(self, skipna=True)
| 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 |