pandas.core.resample.Resampler.std#
- final Resampler.std(ddof=1, numeric_only=False)[源代码][源代码]#
计算组的标准差,排除缺失值。
- 参数:
- ddofint, 默认 1
自由度。
- numeric_only布尔值, 默认为 False
仅包含 float, int 或 boolean 数据。
Added in version 1.5.0.
在 2.0.0 版本发生变更: numeric_only 现在默认为
False
。
- 返回:
- DataFrame 或 Series
每个组内值的标准偏差。
例子
>>> ser = pd.Series( ... [1, 3, 2, 4, 3, 8], ... index=pd.DatetimeIndex( ... [ ... "2023-01-01", ... "2023-01-10", ... "2023-01-15", ... "2023-02-01", ... "2023-02-10", ... "2023-02-15", ... ] ... ), ... ) >>> ser.resample("MS").std() 2023-01-01 1.000000 2023-02-01 2.645751 Freq: MS, dtype: float64