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

Method std

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

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