📜  python n 周期的 std - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:04.486000             🧑  作者: Mango

代码示例1
s = pd.Series([5, 5, 6, 7, 5, 5, 5])
>>> s.rolling(3).std()
0             NaN
1             NaN
2    5.773503e-01
3    1.000000e+00
4    1.000000e+00
5    1.154701e+00
6    2.580957e-08
dtype: float64