gpt4 book ai didi

python - 使用 python 创建 pandas 中时间列表的平均值

转载 作者:行者123 更新时间:2023-12-01 09:21:43 25 4
gpt4 key购买 nike

我有大量数据。

link

我需要每十五分钟“w”平均一次。

link

现在我用for循环来执行,但是太慢了。

pandas 有什么套件可以帮忙吗?

我真的需要你的帮助。非常感谢。

最佳答案

有 2 种可能的不同解决方案 - 按 15Min 重新采样并按平均值和第一个值聚合列:

df = df.resample('15T', on='reporttime').agg({'w':'mean', 'buildingid':'first'})

或者按列buildingidGrouper进行重采样:

df = df.groupby(['buildingid', pd.Grouper(key='reporttime',freq='15T')])['w'].mean()

示例:

rng = pd.date_range('2017-04-03 18:09:04', periods=10, freq='7T')
df = pd.DataFrame({'reporttime': rng, 'w': range(10), 'buildingid':[39] * 5 + [40] * 5})
print (df)
reporttime w buildingid
0 2017-04-03 18:09:04 0 39
1 2017-04-03 18:16:04 1 39
2 2017-04-03 18:23:04 2 39
3 2017-04-03 18:30:04 3 39
4 2017-04-03 18:37:04 4 39
5 2017-04-03 18:44:04 5 40
6 2017-04-03 18:51:04 6 40
7 2017-04-03 18:58:04 7 40
8 2017-04-03 19:05:04 8 40
9 2017-04-03 19:12:04 9 40

df1 = df.resample('15T', on='reporttime').agg({'w':'mean', 'buildingid':'first'}).reset_index()
print (df1)
reporttime w buildingid
0 2017-04-03 18:00:00 0.0 39
1 2017-04-03 18:15:00 1.5 39
2 2017-04-03 18:30:00 4.0 39
3 2017-04-03 18:45:00 6.5 40
4 2017-04-03 19:00:00 8.5 40

df2 = df.groupby(['buildingid', pd.Grouper(key='reporttime',freq='15T')])['w'].mean().reset_index()
print (df2)
buildingid reporttime w
0 39 2017-04-03 18:00:00 0.0
1 39 2017-04-03 18:15:00 1.5
2 39 2017-04-03 18:30:00 3.5
3 40 2017-04-03 18:30:00 5.0
4 40 2017-04-03 18:45:00 6.5
5 40 2017-04-03 19:00:00 8.5

关于python - 使用 python 创建 pandas 中时间列表的平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50758200/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com