MCPcopy
hub / github.com/dask/dask / nanstd

Function nanstd

dask/array/reductions.py:732–748  ·  view source on GitHub ↗
(
    a, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None
)

Source from the content-addressed store, hash-verified

730
731@derived_from(np)
732def nanstd(
733 a, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None
734):
735 result = safe_sqrt(
736 nanvar(
737 a,
738 axis=axis,
739 dtype=dtype,
740 keepdims=keepdims,
741 ddof=ddof,
742 split_every=split_every,
743 out=out,
744 )
745 )
746 if dtype and dtype != result.dtype:
747 result = result.astype(dtype)
748 return result
749
750
751def _arg_combine(data, axis, argfunc, keepdims=False):

Callers

nothing calls this directly

Calls 3

safe_sqrtFunction · 0.85
nanvarFunction · 0.85
astypeMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…