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

Function std

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

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