distinct values pandas dataframe code example
Example 1: unique values in dataframe column
#List unique values in the df['name'] column
df.name.unique()
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