Q:

value_counts pandas

col-name.value_count()
2
df.value_counts(normalize=True) 
0
df.stack().value_counts()
0
idx.value_counts()
1
from collections import Counter
values=np.ones(10)
Counter(values)
0
>>> 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
0

New to Communities?

Join the community