gpt4 book ai didi

python - Pandas 系列: calculate means between neighbours

转载 作者:太空宇宙 更新时间:2023-11-03 15:58:19 25 4
gpt4 key购买 nike

我有 pandas 系列,想要计算相邻元素之间的平均值。

例如[1 2 3 4 5 6 7 8 9]将给出结果[1.5 2.5 3.5 4.5 5.5 6.5 7.5 8.5]

最佳答案

尝试使用rolling为此:

S = pd.Series(range(1,10))
S1 = S.rolling(2).mean().dropna()

输出:

1    1.5
2 2.5
3 3.5
4 4.5
5 5.5
6 6.5
7 7.5
8 8.5

关于python - Pandas 系列: calculate means between neighbours,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40576433/

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