Ho un set di dati
|category|
cat a
cat b
cat a
Vorrei poter restituire qualcosa del genere (mostrando valori e frequenza unici)
category | freq |
cat a 2
cat b 1
df["category"].value_counts()
?
type(df['category'].value_counts())
e lo dirà
collections.Counter