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

Method cummax

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

Source from the content-addressed store, hash-verified

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

Calls 1

CumMaxClass · 0.90

Tested by 4

test_cumulativeFunction · 0.36