Answers for "select n number of rows for all the unique value pandas"

1

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
Posted by: Guest on May-28-2020
1

pandas count the number of unique values in a column

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

Code answers related to "select n number of rows for all the unique value pandas"

Python Answers by Framework

Browse Popular Code Answers by Language