Answers for "pandas groupby aggregate with two columns"

1

python group by multiple aggregates

def f(x):
    d = {}
    d['a_sum'] = x['a'].sum()
    d['a_max'] = x['a'].max()
    d['b_mean'] = x['b'].mean()
    d['c_d_prodsum'] = (x['c'] * x['d']).sum()
    return pd.Series(d, index=['a_sum', 'a_max', 'b_mean', 'c_d_prodsum'])

df.groupby('group').apply(f)
Posted by: Guest on October-29-2021
0

group by, aggregate multiple column -pandas

df[['col1', 'col2', 'col3', 'col4']].groupby(['col1', 'col2']).agg(['mean', 'count'])
Posted by: Guest on November-20-2020

Code answers related to "pandas groupby aggregate with two columns"

Python Answers by Framework

Browse Popular Code Answers by Language