Expanding.min(self, *args, **kwargs) [source]
Calculate the expanding minimum.
| Parameters: |
|
|---|---|
| Returns: |
|
See also
Series.expanding DataFrame.expanding Series.min DataFrame.min Performing a rolling minimum with a window size of 3.
>>> s = pd.Series([4, 3, 5, 2, 6]) >>> s.rolling(3).min() 0 NaN 1 NaN 2 3.0 3 2.0 4 2.0 dtype: float64
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/0.25.0/reference/api/pandas.core.window.Expanding.min.html