Answers for "dataframe unique list"

1

get list of unique values in pandas column

a = df['column name'].unique() #returns a list of unique values
Posted by: Guest on March-29-2021
1

pandas unique values to list

df.groupby('param')['column'].nunique().sort_values(ascending=False).unique().tolist()
Posted by: Guest on May-15-2020

Python Answers by Framework

Browse Popular Code Answers by Language