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

Method var

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

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