Pandas DataFrame Otwórz liczbę występowania w kolumnie

# pandas count distinct values in column 'col'
df['col'].value_counts()
Sasso