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

Function any

dask/array/reductions.py:150–160  ·  view source on GitHub ↗
(a, axis=None, keepdims=False, split_every=None, out=None)

Source from the content-addressed store, hash-verified

148
149@derived_from(np)
150def any(a, axis=None, keepdims=False, split_every=None, out=None):
151 return reduction(
152 a,
153 chunk.any,
154 chunk.any,
155 axis=axis,
156 keepdims=keepdims,
157 dtype="bool",
158 split_every=split_every,
159 out=out,
160 )
161
162
163@derived_from(np)

Callers 15

getterFunction · 0.90
map_blocksFunction · 0.90
storeFunction · 0.90
__new__Method · 0.90
__getitem__Method · 0.90
_vindexMethod · 0.90
anyMethod · 0.90
normalize_chunksFunction · 0.90
common_blockdimFunction · 0.90
concatenateFunction · 0.90
asarrayFunction · 0.90
asanyarrayFunction · 0.90

Calls 1

reductionFunction · 0.90

Tested by 15

test_reduction_namesFunction · 0.68
test_temporary_directoryFunction · 0.68
test_io_fusion_blockwiseFunction · 0.68
test_analyzeFunction · 0.68
test_avoid_alignmentFunction · 0.68
test_concat_divisionsFunction · 0.68
test_concat_one_objectFunction · 0.68
test_groupby_apply_tasksFunction · 0.68