pandas.core.resample.Resampler.min #

最终 重采样器。min ( numeric_only = False , min_count = 0 , * args , ** kwargs ) [来源] #

计算组的最小值。

返回
系列或数据框

例子

>>> 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').min()
2023-01-01    1
2023-02-01    3
Freq: MS, dtype: int64