MCPcopy
hub / github.com/dask/dask / std

Function std

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

712
713@derived_from(np)
714def std(a, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None):
715 result = safe_sqrt(
716 var(
717 a,
718 axis=axis,
719 dtype=dtype,
720 keepdims=keepdims,
721 ddof=ddof,
722 split_every=split_every,
723 out=out,
724 )
725 )
726 if dtype and dtype != result.dtype:
727 result = result.astype(dtype)
728 return result
729
730
731@derived_from(np)

Callers 2

stdMethod · 0.90
stdMethod · 0.90

Calls 3

safe_sqrtFunction · 0.85
varFunction · 0.85
astypeMethod · 0.45

Tested by

no test coverage detected