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