gpt4 book ai didi

python - python中数据帧每15行的平均值

转载 作者:行者123 更新时间:2023-12-04 08:51:50 33 4
gpt4 key购买 nike

我有一个(1500x11)的数据框。我必须选择 15 行中的每一行,并分别取每 11 列的平均值。所以我的最终数据框的尺寸应该是 100x11。如何在 Python 中做到这一点。

最佳答案

以下应该工作:

dfnew=df[:0]
for i in range(100):
df2=df.iloc[i*15:i*15+15, :]
x=pd.Series(dict(df2.mean()))
dfnew=dfnew.append(x, ignore_index=True)

print(dfnew)

关于python - python中数据帧每15行的平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64059897/

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