pandas.expanding_max

pandas.expanding_max(arg, min_periods=1, freq=None, center=False, time_rule=None, **kwargs)

Moving max of 1d array of dtype=float64 along axis=0 ignoring NaNs. Expanding maximum

Parameters :

arg : Series, DataFrame

min_periods : int

Minimum number of observations in window required to have a value

freq : None or string alias / date offset object, default=None

Frequency to conform to before computing statistic

Returns :

y : type of input argument