Answers for "how to group by 3 columns in pandas and then take sum of each group"

2

pandas sum multiple columns groupby

df.groupby(['col1','col2']).agg({'col3':'sum','col4':'sum'}).reset_index()
Posted by: Guest on November-10-2020

Code answers related to "how to group by 3 columns in pandas and then take sum of each group"

Python Answers by Framework

Browse Popular Code Answers by Language