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

Function moment

dask/array/stats.py:410–415  ·  view source on GitHub ↗
(a, moment=1, axis=0, nan_policy="propagate")

Source from the content-addressed store, hash-verified

408
409@derived_from(scipy.stats)
410def moment(a, moment=1, axis=0, nan_policy="propagate"):
411 if nan_policy != "propagate":
412 raise NotImplementedError(
413 "`nan_policy` other than 'propagate' have not been implemented."
414 )
415 return da.moment(a, moment, axis=axis)
416
417
418# -------

Callers 2

skewFunction · 0.70
kurtosisFunction · 0.70

Calls 1

momentMethod · 0.45

Tested by

no test coverage detected