MCPcopy Index your code
hub / github.com/dask/dask / normaltest

Function normaltest

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

Source from the content-addressed store, hash-verified

360
361@derived_from(scipy.stats)
362def normaltest(a, axis=0, nan_policy="propagate"):
363 if nan_policy != "propagate":
364 raise NotImplementedError(
365 "`nan_policy` other than 'propagate' have not been implemented."
366 )
367
368 s, _ = skewtest(a, axis)
369 k, _ = kurtosistest(a, axis)
370 k2 = s * s + k * k
371 return delayed(NormaltestResult, nout=2)(k2, delayed(distributions.chi2.sf)(k2, 2))
372
373
374@derived_from(scipy.stats)

Callers

nothing calls this directly

Calls 3

delayedFunction · 0.90
skewtestFunction · 0.85
kurtosistestFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…