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

Method reduction_aggregate

dask/dataframe/dask_expr/_reductions.py:1177–1182  ·  view source on GitHub ↗
(cls, vals, ddof, skipna)

Source from the content-addressed store, hash-verified

1175
1176 @classmethod
1177 def reduction_aggregate(cls, vals, ddof, skipna):
1178 if skipna:
1179 result = moment_agg(vals, sum=np.nansum, ddof=ddof, axis=(0,))
1180 else:
1181 result = moment_agg(vals, ddof=ddof, axis=(0,))
1182 return result
1183
1184
1185class Moment(ArrayReduction):

Callers

nothing calls this directly

Calls 1

moment_aggFunction · 0.90

Tested by

no test coverage detected