how to count number of unique values in a column python code example

Example 1: count unique pandas

df['column'].nunique()

Example 2: 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

Example 3: get count of unique values in column pandas

df = df.groupby('domain')['ID'].nunique()

print (df)
domain
'facebook.com'    1
'google.com'      1
'twitter.com'     2
'vk.com'          3
Name: ID, dtype: int64

Example 4: how to count unique values in a column dataframe in python

dataframe.column.nunique()

Tags:

Misc Example