gpt4 book ai didi

python - 如何计算选定范围的平均值?( Pandas )

转载 作者:行者123 更新时间:2023-12-04 08:00:06 24 4
gpt4 key购买 nike

我有一个像

Date           Volume

9/23/2019 50
9/24/2019 234
9/25/2019 23124
9/26/2019 23412
9/27/2019 21213
9/30/2019 23241
10/1/2019 231323
10/2/2019 2312
10/3/2019 23213
10/4/2019 421020
10/7/2019 3212
10/8/2019 23122



import pandas as pd
i = input('enter credentials')
df = pd.read_csv('sample.csv')
我想在两个条件下计算平均值:
如果输入 i 是 m,那么它应该计算月份的平均值并按月显示结果,如果输入 i 是 w,它应该计算一周的平均值并按周显示结果。
在这种情况下,可以有更多数据帧,一周有 5 天,一个月有 20 天。

最佳答案

您还没有向我们展示输出,但根据描述,您可以尝试将输入传递给此函数(可扩展):
首先将日期转换为实际的日期时间列:

df['Date'] = pd.to_datetime(df['Date'],format='%m/%d/%Y')
然后 :
def myinp(i,dataframe,datecol):
freq_d = {'m':'m','w':'W'}
return dataframe.groupby(dataframe[datecol]
.dt.strftime(f"%{freq_d.get(i)}").rename(i)).mean()
print("By m: \n",myinp('m',df,'Date'))
print("---------------------------")
print("By w: \n",myinp('w',df,'Date'))
By m: 
Volume
m
09 15212.333333
10 117367.000000
---------------------------
By w:
Volume
w
38 13606.6
39 140221.8
40 13167.0

关于python - 如何计算选定范围的平均值?( Pandas ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66519038/

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