dask_expr._resample.Resampler.mean

dask_expr._resample.Resampler.mean

Resampler.mean()[源代码]

计算各组的均值,排除缺失值。

此文档字符串是从 pandas.core.resample.Resampler.mean 复制而来的。

Dask 版本可能存在一些不一致性。

参数
仅数值bool, 默认 False (Dask 中不支持)

只包含 floatintboolean 数据。

在 2.0.0 版更改: numeric_only 现在默认设置为 False

返回
DataFrame 或 Series

每个组内值的平均值。

示例

>>> ser = pd.Series([1, 2, 3, 4], index=pd.DatetimeIndex(  
...                 ['2023-01-01', '2023-01-15', '2023-02-01', '2023-02-15']))
>>> ser  
2023-01-01    1
2023-01-15    2
2023-02-01    3
2023-02-15    4
dtype: int64
>>> ser.resample('MS').mean()  
2023-01-01    1.5
2023-02-01    3.5
Freq: MS, dtype: float64