Converting a Pandas GroupBy output from Series to DataFrame

后端 未结 9 745
广开言路
广开言路 2020-11-22 09:58

I\'m starting with input data like this

df1 = pandas.DataFrame( { 
    \"Name\" : [\"Alice\", \"Bob\", \"Mallory\", \"Mallory\", \"Bob\" , \"Mallory\"] , 
           


        
9条回答
  •  忘掉有多难
    2020-11-22 11:00

    Below solution may be simpler:

    df1.reset_index().groupby( [ "Name", "City"],as_index=False ).count()
    

提交回复
热议问题