在pandas聚合函数中创建多个列

9 投票
1 回答
4043 浏览
提问于 2025-04-17 16:00

我想在重新采样一个pandas数据框的时候,创建多个列,就像内置的ohlc方法那样。

def mhl(data):
    return pandas.Series([np.mean(data),np.max(data),np.min(data)],index = ['mean','high','low'])

ts.resample('30Min',how=mhl)

但是出现了错误:

Exception: Must produce aggregated value

有什么建议吗?谢谢!

1 个回答

8

你可以把一个函数的字典传递给 resample 方法:

In [35]: ts
Out[35]:
2013-01-01 00:00:00     0
2013-01-01 00:15:00     1
2013-01-01 00:30:00     2
2013-01-01 00:45:00     3
2013-01-01 01:00:00     4
2013-01-01 01:15:00     5
...
2013-01-01 23:00:00    92
2013-01-01 23:15:00    93
2013-01-01 23:30:00    94
2013-01-01 23:45:00    95
2013-01-02 00:00:00    96
Freq: 15T, Length: 97

首先,创建一个函数的字典:

mhl = {'m':np.mean, 'h':np.max, 'l':np.min}

然后,把这个字典传给 resample 方法里的 how 参数:

In [36]: ts.resample("30Min", how=mhl)
Out[36]:
                      h     m   l
2013-01-01 00:00:00   1   0.5   0
2013-01-01 00:30:00   3   2.5   2
2013-01-01 01:00:00   5   4.5   4
2013-01-01 01:30:00   7   6.5   6
2013-01-01 02:00:00   9   8.5   8
2013-01-01 02:30:00  11  10.5  10
2013-01-01 03:00:00  13  12.5  12
2013-01-01 03:30:00  15  14.5  14

撰写回答