Answers for "count the number of occurrences a number in a column python"

0

python - count number of occurence in a column

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

len(df[df['education'] == '9th'])
Posted by: Guest on December-14-2020

Code answers related to "count the number of occurrences a number in a column python"

Python Answers by Framework

Browse Popular Code Answers by Language