pandas.core.resample.Resampler.mean #

最终 重采样器。平均值( numeric_only = False , * args , ** kwargs ) [来源] #

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

参数
numeric_only布尔值,默认 False

仅包含floatintboolean数据。

在版本 2.0.0 中更改: numeric_only 现在默认为False.

返回
数据框或系列

每组内值的平均值。

例子

>>> 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