pandas count values in column code example

Example 1: Find the value counts for the column 'your_column'

df["your_column"].value_counts()

Example 2: count values pandas

>>> index = pd.Index([3, 1, 2, 3, 4, np.nan])
>>> index.value_counts()
3.0    2
4.0    1
2.0    1
1.0    1
dtype: int64

Example 3: pandas count rows with value

len(df[df['score'] == 1.0])

Example 4: pandas count values by column

df = pd.DataFrame({'a':list('abssbab')})
df.groupby('a').count()

Example 5: pandas count

>>> df.set_index(["Person", "Single"]).count(level="Person")
        Age
Person
John      2
Lewis     1
Myla      1

Example 6: count values python

from collections import Counter
values=np.ones(10)
Counter(values)