Answers for "print a list of unique values in a column pandas dataframe python"

1

pandas unique values to list

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

Code answers related to "print a list of unique values in a column pandas dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language