(self, numeric_only=False, split_every=False)
| 332 | return Min(self, skipna, numeric_only, split_every=split_every, axis=axis) |
| 333 | |
| 334 | def count(self, numeric_only=False, split_every=False): |
| 335 | return Count(self, numeric_only, split_every) |
| 336 | |
| 337 | def cumsum(self, skipna=True): |
| 338 | from dask.dataframe.dask_expr._cumulative import CumSum |