MCPcopy Create free account
hub / github.com/dask/dask / cummax

Method cummax

dask/dataframe/dask_expr/_expr.py:347–350  ·  view source on GitHub ↗
(self, skipna=True)

Source from the content-addressed store, hash-verified

345 return CumProd(self, skipna=skipna)
346
347 def cummax(self, skipna=True):
348 from dask.dataframe.dask_expr._cumulative import CumMax
349
350 return CumMax(self, skipna=skipna)
351
352 def cummin(self, skipna=True):
353 from dask.dataframe.dask_expr._cumulative import CumMin

Calls 1

CumMaxClass · 0.90

Tested by 4

test_cumulativeFunction · 0.36