(self, by, **kwargs)
| 4474 | |
| 4475 | @derived_from(pd.Series) |
| 4476 | def groupby(self, by, **kwargs): |
| 4477 | from dask.dataframe.dask_expr._groupby import SeriesGroupBy |
| 4478 | |
| 4479 | return SeriesGroupBy(self, by, **kwargs) |
| 4480 | |
| 4481 | def rename(self, index, sorted_index=False): |
| 4482 | """Alter Series index labels or name |