Answers for "python pandas get count of unique values"

4

how to count number of unique values in a column python

pd.value_counts(df.Account_Type)

Gold        3
Platinum    1
Name: Account_Type, dtype: int64
Posted by: Guest on June-04-2020
1

values of unique from dataframe with count

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

Code answers related to "python pandas get count of unique values"

Python Answers by Framework

Browse Popular Code Answers by Language