dask_expr._resample.Resampler.max
dask_expr._resample.Resampler.max¶
- Resampler.max()[源代码]¶
计算组的最大值。
此文档字符串是从 pandas.core.resample.Resampler.max 复制的。
Dask 版本可能存在一些不一致性。
- 返回
- Series 或 DataFrame
示例
>>> 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').max() 2023-01-01 2 2023-02-01 4 Freq: MS, dtype: int64