bigframes.geopandas.GeoSeries.cummin#

GeoSeries.cummin() Series#

Return cumulative minimum over a DataFrame or Series axis.

Returns a DataFrame or Series of the same size containing the cumulative minimum.

Examples:

>>> s = bpd.Series([2, np.nan, 5, -1, 0])
>>> s
0     2.0
1    <NA>
2     5.0
3    -1.0
4     0.0
dtype: Float64

By default, NA values are ignored.

>>> s.cummin()
0     2.0
1    <NA>
2     2.0
3    -1.0
4    -1.0
dtype: Float64
Returns:

Return cumulative minimum of scalar or Series.

Return type:

bigframes.pandas.Series