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

Function moment

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

Source from the content-addressed store, hash-verified

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

Callers 2

skewFunction · 0.70
kurtosisFunction · 0.70

Calls 1

momentMethod · 0.45

Tested by

no test coverage detected