DataFrame.
distinct
Returns a new DataFrame containing the distinct rows in this DataFrame.
DataFrame
New in version 1.3.0.
Changed in version 3.4.0: Supports Spark Connect.
DataFrame with distinct records.
Examples
>>> df = spark.createDataFrame( ... [(14, "Tom"), (23, "Alice"), (23, "Alice")], ["age", "name"])
Return the number of distinct rows in the DataFrame
>>> df.distinct().count() 2