Answers for "unique count in python"

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
0

counting unique values python

df.loc[df['mID']=='A','hID'].agg(['nunique','count','size'])
Posted by: Guest on October-02-2020
-1

count unique values in python

aa="XXYYYSBAA"
bb=dict(zip(list(aa),[list(aa).count(i) for i in list(aa)]))
print(bb)
# output:
# {'X': 2, 'Y': 3, 'S': 1, 'B': 1, 'A': 2}
Posted by: Guest on September-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language