(self, skipna=True)
| 336 | return Count(self, numeric_only, split_every) |
| 337 | |
| 338 | def cumsum(self, skipna=True): |
| 339 | from dask.dataframe.dask_expr._cumulative import CumSum |
| 340 | |
| 341 | return CumSum(self, skipna=skipna) |
| 342 | |
| 343 | def cumprod(self, skipna=True): |
| 344 | from dask.dataframe.dask_expr._cumulative import CumProd |