how to count unique values in a column dataframe in python

26

len(df[df['score'] == 1.0])
pd.value_counts(df.Account_Type)

Gold        3
Platinum    1
Name: Account_Type, dtype: int64
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
dataframe.column.nunique()

Comments

Submit
0 Comments