count elements in a dataframe code example
Example 1: pandas get count of column
df['column_name'].value_counts()
Example 2: pandas count
>>> df.set_index(["Person", "Single"]).count(level="Person")
Age
Person
John 2
Lewis 1
Myla 1