Answers for "pandas count specific value in column group by"

1

pandas count specific value in column

(df[education]=='9th').sum()
Posted by: Guest on November-28-2020
1

pandas groupby count unique rows

df = df.groupby(by='domain', as_index=False).agg({'ID': pd.Series.nunique})
print(df)
    domain  ID
0       fb   1
1      ggl   1
2  twitter   2
3       vk   3
Posted by: Guest on October-25-2020
0

pandas groupby counts

df[['col1', 'col2', 'col3', 'col4']].groupby(['col1', 'col2']).agg(['mean', 'count'])
Posted by: Guest on November-20-2020
0

pandas count occurrences of certain value in row

print df
  col1 education
0    a       9th
1    b       9th
2    c       8th

print df.education == '9th'
0     True
1     True
2    False
Name: education, dtype: bool

print df[df.education == '9th']
  col1 education
0    a       9th
1    b       9th

print df[df.education == '9th'].shape[0]
2
print len(df[df['education'] == '9th'])
2
Posted by: Guest on May-29-2020

Code answers related to "pandas count specific value in column group by"

Python Answers by Framework

Browse Popular Code Answers by Language