MCPcopy
hub / github.com/dask/dask / std

Method std

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

381 )
382
383 def std(
384 self, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None
385 ):
386 """Returns the standard deviation of the array elements along given axis.
387
388 Refer to :func:`dask.array.std` for full documentation.
389
390 See Also
391 --------
392 dask.array.std : equivalent function
393 """
394 from dask.array.reductions import std
395
396 return std(
397 self,
398 axis=axis,
399 dtype=dtype,
400 keepdims=keepdims,
401 ddof=ddof,
402 split_every=split_every,
403 out=out,
404 )
405
406 def var(
407 self, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None

Callers 8

test_dtype_complexFunction · 0.45
test_no_chunksFunction · 0.45
statsFunction · 0.45
mystatsFunction · 0.45
test_sparse.pyFile · 0.45
test_cupy_core.pyFile · 0.45

Calls 1

stdFunction · 0.90

Tested by 6

test_dtype_complexFunction · 0.36
test_no_chunksFunction · 0.36
statsFunction · 0.36
mystatsFunction · 0.36