(cls, df, **kwargs)
| 800 | |
| 801 | @classmethod |
| 802 | def chunk(cls, df, **kwargs): |
| 803 | out = cls.reduction_chunk(df, **kwargs) |
| 804 | # Return a dataframe so that the concatenated version is also a dataframe |
| 805 | return out.to_frame().T if is_series_like(out) else out |
| 806 | |
| 807 | @classmethod |
| 808 | def combine(cls, inputs: list, **kwargs): # type: ignore |
no test coverage detected