dataframe extract distinct columns code example
Example 1: dataframe python unique values rows
# get the unique values (rows)
df.drop_duplicates()
Example 2: Returns a new DataFrame containing the distinct rows in this DataFrame
# Returns a new DataFrame containing the distinct rows in this DataFrame
df.ditinct().count()
# 2