MCPcopy
hub / github.com/dask/dask / all

Method all

dask/array/_array_expr/_collection.py:493–504  ·  view source on GitHub ↗

Returns True if all elements evaluate to True. Refer to :func:`dask.array.all` for full documentation. See Also -------- dask.array.all : equivalent function

(self, axis=None, keepdims=False, split_every=None, out=None)

Source from the content-addressed store, hash-verified

491 return any(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
492
493 def all(self, axis=None, keepdims=False, split_every=None, out=None):
494 """Returns True if all elements evaluate to True.
495
496 Refer to :func:`dask.array.all` for full documentation.
497
498 See Also
499 --------
500 dask.array.all : equivalent function
501 """
502 from dask.array.reductions import all
503
504 return all(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
505
506 def min(self, axis=None, keepdims=False, split_every=None, out=None):
507 """Return the minimum along a given axis.

Callers 15

test_storeFunction · 0.45
test_store_regionsFunction · 0.45
test_store_compute_falseFunction · 0.45
test_concatenate3_2Function · 0.45
test_vindex_mergeFunction · 0.45
test_to_npy_stackFunction · 0.45

Calls 1

allFunction · 0.90

Tested by 15

test_storeFunction · 0.36
test_store_regionsFunction · 0.36
test_store_compute_falseFunction · 0.36
test_concatenate3_2Function · 0.36
test_vindex_mergeFunction · 0.36
test_to_npy_stackFunction · 0.36