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

Method var

dask/array/core.py:2686–2707  ·  view source on GitHub ↗

Returns the variance of the array elements, along given axis. Refer to :func:`dask.array.var` for full documentation. See Also -------- dask.array.var : equivalent function

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

Source from the content-addressed store, hash-verified

2684 )
2685
2686 def var(
2687 self, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None
2688 ):
2689 """Returns the variance of the array elements, along given axis.
2690
2691 Refer to :func:`dask.array.var` for full documentation.
2692
2693 See Also
2694 --------
2695 dask.array.var : equivalent function
2696 """
2697 from dask.array.reductions import var
2698
2699 return var(
2700 self,
2701 axis=axis,
2702 dtype=dtype,
2703 keepdims=keepdims,
2704 ddof=ddof,
2705 split_every=split_every,
2706 out=out,
2707 )
2708
2709 def moment(
2710 self,

Callers 6

momentFunction · 0.45
varFunction · 0.45
nanvarFunction · 0.45
ttest_indFunction · 0.45
ttest_1sampFunction · 0.45
ttest_relFunction · 0.45

Calls 1

varFunction · 0.90

Tested by

no test coverage detected