Answers for "python aggregate count and sum"

0

python aggregate count and sum

In [110]: (df.groupby('Company Name')
   .....:    .agg({'Organisation Name':'count', 'Amount': 'sum'})
   .....:    .reset_index()
   .....:    .rename(columns={'Organisation Name':'Organisation Count'})
   .....: )
Out[110]:
          Company Name   Amount  Organisation Count
0  Vifor Pharma UK Ltd  4207.93                   5
Posted by: Guest on June-11-2020
0

python aggregate count and sum

df.groupby('Company Name').agg(MySum=('Amount', 'sum'), MyCount=('Amount', 'count'))
Posted by: Guest on June-11-2020

Code answers related to "python aggregate count and sum"

Python Answers by Framework

Browse Popular Code Answers by Language