(cls, df, **kwargs)
| 861 | |
| 862 | @classmethod |
| 863 | def chunk(cls, df, **kwargs): |
| 864 | func = kwargs.pop("func") |
| 865 | out = func(df, **kwargs) |
| 866 | # Return a dataframe so that the concatenated version is also a dataframe |
| 867 | return out.to_frame().T if is_series_like(out) else out |
| 868 | |
| 869 | @classmethod |
| 870 | def combine(cls, inputs: list, **kwargs): # type: ignore |
nothing calls this directly
no test coverage detected