(cls, inputs: list, **kwargs)
| 868 | |
| 869 | @classmethod |
| 870 | def combine(cls, inputs: list, **kwargs): # type: ignore |
| 871 | func = kwargs.pop("func") |
| 872 | df = _concat(inputs) |
| 873 | out = func(df, **kwargs) |
| 874 | # Return a dataframe so that the concatenated version is also a dataframe |
| 875 | return out.to_frame().T if is_series_like(out) else out |
| 876 | |
| 877 | @classmethod |
| 878 | def aggregate(cls, inputs, **kwargs): |
nothing calls this directly
no test coverage detected