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

Function nanstd

dask/array/reductions.py:729–745  ·  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

727
728@derived_from(np)
729def nanstd(
730 a, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None
731):
732 result = safe_sqrt(
733 nanvar(
734 a,
735 axis=axis,
736 dtype=dtype,
737 keepdims=keepdims,
738 ddof=ddof,
739 split_every=split_every,
740 out=out,
741 )
742 )
743 if dtype and dtype != result.dtype:
744 result = result.astype(dtype)
745 return result
746
747
748def _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