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

Method var

dask/array/_array_expr/_collection.py:406–427  ·  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

404 )
405
406 def var(
407 self, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None
408 ):
409 """Returns the variance of the array elements, along given axis.
410
411 Refer to :func:`dask.array.var` for full documentation.
412
413 See Also
414 --------
415 dask.array.var : equivalent function
416 """
417 from dask.array.reductions import var
418
419 return var(
420 self,
421 axis=axis,
422 dtype=dtype,
423 keepdims=keepdims,
424 ddof=ddof,
425 split_every=split_every,
426 out=out,
427 )
428
429 def moment(
430 self,

Callers 4

test_sparse.pyFile · 0.45
test_metadataFunction · 0.45
test_reduction_namesFunction · 0.45
test_cupy_core.pyFile · 0.45

Calls 1

varFunction · 0.90

Tested by 2

test_metadataFunction · 0.36
test_reduction_namesFunction · 0.36