Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
Ctrl+K

pandas.core.resample.Resampler.max#

finalResampler.max(numeric_only=False,min_count=0,*args,**kwargs)[source]#

Compute max value of group.

Returns:
Series or DataFrame

Examples

>>>ser=pd.Series([1,2,3,4],index=pd.DatetimeIndex(...['2023-01-01','2023-01-15','2023-02-01','2023-02-15']))>>>ser2023-01-01    12023-01-15    22023-02-01    32023-02-15    4dtype: int64>>>ser.resample('MS').max()2023-01-01    22023-02-01    4Freq: MS, dtype: int64

[8]ページ先頭

©2009-2025 Movatter.jp