Answers for "how to group by and count in pandas"

5

group by count dataframe

df.groupby(['col1', 'col2']).size().reset_index(name='counts')
Posted by: Guest on February-24-2020

Code answers related to "how to group by and count in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language