MCPcopy Index your code
hub / github.com/dask/dask / std

Method std

dask/array/core.py:2663–2684  ·  view source on GitHub ↗

Returns the standard deviation of the array elements along given axis. Refer to :func:`dask.array.std` for full documentation. See Also -------- dask.array.std : equivalent function

(
        self, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None
    )

Source from the content-addressed store, hash-verified

2661 )
2662
2663 def std(
2664 self, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None
2665 ):
2666 """Returns the standard deviation of the array elements along given axis.
2667
2668 Refer to :func:`dask.array.std` for full documentation.
2669
2670 See Also
2671 --------
2672 dask.array.std : equivalent function
2673 """
2674 from dask.array.reductions import std
2675
2676 return std(
2677 self,
2678 axis=axis,
2679 dtype=dtype,
2680 keepdims=keepdims,
2681 ddof=ddof,
2682 split_every=split_every,
2683 out=out,
2684 )
2685
2686 def var(
2687 self, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None

Callers

nothing calls this directly

Calls 1

stdFunction · 0.90

Tested by

no test coverage detected