(self, by, **kwargs)
| 4455 | |
| 4456 | @derived_from(pd.Series) |
| 4457 | def groupby(self, by, **kwargs): |
| 4458 | from dask.dataframe.dask_expr._groupby import SeriesGroupBy |
| 4459 | |
| 4460 | return SeriesGroupBy(self, by, **kwargs) |
| 4461 | |
| 4462 | def rename(self, index, sorted_index=False): |
| 4463 | """Alter Series index labels or name |