select distinct column values and create dataframe code example
Example 1: distinct rows in this DataFrame
# distinct rows in this DataFrame
df.distinct().count()
# 2
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