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

Method std

dask/array/core.py:2661–2682  ·  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

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