MCPcopy Create free account
hub / github.com/dask/dask / aggregate

Method aggregate

dask/dataframe/dask_expr/_reductions.py:1118–1124  ·  view source on GitHub ↗
(cls, inputs, meta, index, **kwargs)

Source from the content-addressed store, hash-verified

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
1127class Var(ArrayReduction):

Callers

nothing calls this directly

Calls 2

is_series_likeFunction · 0.85
funcFunction · 0.50

Tested by

no test coverage detected