1

I am trying to count all the instances of all values of col_a

for ex.

col_a
 A
 B
 C
 A
 D
 B
 A

Is there one line of code I can use that would tell me how many times each value (A,B,C,D) exist in that column?

U12-Forward
  • 65,118
  • 12
  • 70
  • 89
Chris90
  • 1,664
  • 2
  • 14
  • 28

2 Answers2

1

So the solution will be value_counts

df.col_a.value_counts()
BENY
  • 296,997
  • 19
  • 147
  • 204
1

Or use groupby with size:

>>> df.groupby('col_a').size()
col_a
A    3
B    2
C    1
D    1
dtype: int64
>>> 
U12-Forward
  • 65,118
  • 12
  • 70
  • 89