Answers for "how to get count of unique values in a column pandas"

8

count unique pandas

df['column'].nunique()
Posted by: Guest on March-12-2020
1

values of unique from dataframe with count

data = df.groupby('ColumnName')['IDColumnName'].nunique()
print(data)
Posted by: Guest on November-07-2020
1

count unique values pandas

df['hID'].nunique()
5
Posted by: Guest on May-28-2020

Code answers related to "how to get count of unique values in a column pandas"

Python Answers by Framework

Browse Popular Code Answers by Language