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

Method var

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

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