(cls, inputs, meta, index, **kwargs)
| 1116 | |
| 1117 | @classmethod |
| 1118 | def aggregate(cls, inputs, meta, index, **kwargs): |
| 1119 | func = cls.reduction_aggregate or cls.reduction_chunk |
| 1120 | result = func(inputs, **kwargs) |
| 1121 | if is_series_like(meta): |
| 1122 | return type(meta)(result, name=meta.name, index=index) |
| 1123 | else: |
| 1124 | return result |
| 1125 | |
| 1126 | |
| 1127 | class Var(ArrayReduction): |
nothing calls this directly
no test coverage detected