df1 是具有 4 列的 DataFrame。
我想通过将 df1 与列“A”分组并在“C”和“D”列上进行多列操作来创建一个新的 DataFrame (df2)
列“AA”=平均值(C)+平均值(D)
'BB' 列 = 标准(D)
df1= pd.DataFrame({
'A' : ['foo', 'bar', 'foo', 'bar','foo', 'bar', 'foo', 'foo'],
'B' : ['one', 'one', 'two', 'three','two', 'two', 'one', 'three'],
'C' : np.random.randn(8),
'D' : np.random.randn(8)})
A B C D
0 foo one 1.652675 -1.983378
1 bar one 0.926656 -0.598756
2 foo two 0.131381 0.604803
3 bar three -0.436376 -1.186363
4 foo two 0.487161 -0.650876
5 bar two 0.358007 0.249967
6 foo one -1.150428 2.275528
7 foo three 0.202677 -1.408699
def fun1(gg): # this does not work
return pd.DataFrame({'AA':C.mean()+gg.C.std(), 'BB':gg.C.std()})
dg1 = df1.groupby('A')
df2 = dg1.apply(fun1)
这不起作用。似乎aggregation() 仅适用于Series,并且不可能进行多列操作。并且 apply() 仅产生具有多列操作的 Series 输出。有没有其他方法可以通过多列操作产生多列输出(DataFrame)?