“Pandas Groupby zählt als neue Spalte” Code-Antworten

Pandas Groupby zählt als neue Spalte

In [12]: df.groupby(["item", "color"])["id"].count().reset_index(name="count")
Out[12]:
    item  color  count
0    car  black      2
1  truck   blue      1
2  truck    red      2
Grieving Giraffe

Gruppe nach Count DataFrame

df.groupby(['col1', 'col2']).size().reset_index(name='counts')
Crazy Caterpillar

Gruppe nach Count DataFrame

df.groupby(['col1','col2']).size()
Crazy Caterpillar

Gruppe von Pandas Count

df[['col1', 'col2', 'col3', 'col4']].groupby(['col1', 'col2']).agg(['mean', 'count'])
Panicky Pony

Ähnliche Antworten wie “Pandas Groupby zählt als neue Spalte”

Fragen ähnlich wie “Pandas Groupby zählt als neue Spalte”

Weitere verwandte Antworten zu “Pandas Groupby zählt als neue Spalte” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen