Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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'])
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #count #number #occurence #column
ADD COMMENT
Topic
Name
6+5 =