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

Function std

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

709
710@derived_from(np)
711def std(a, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None):
712 result = safe_sqrt(
713 var(
714 a,
715 axis=axis,
716 dtype=dtype,
717 keepdims=keepdims,
718 ddof=ddof,
719 split_every=split_every,
720 out=out,
721 )
722 )
723 if dtype and dtype != result.dtype:
724 result = result.astype(dtype)
725 return result
726
727
728@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