how to distinct choose a column in python code example
Example 1: pandas distinct
>gapminder['continent'].unique()
array(['Asia', 'Europe', 'Africa', 'Americas', 'Oceania'], dtype=object)
Example 2: dataframe python unique values rows
# get the unique values (rows)
df.drop_duplicates()