MCPcopy
hub / github.com/dask/dask / count

Function count

dask/array/ma.py:185–195  ·  view source on GitHub ↗
(a, axis=None, keepdims=False, split_every=None)

Source from the content-addressed store, hash-verified

183
184@derived_from(np.ma)
185def count(a, axis=None, keepdims=False, split_every=None):
186 return reduction(
187 a,
188 _chunk_count,
189 chunk.sum,
190 axis=axis,
191 keepdims=keepdims,
192 dtype=np.intp,
193 split_every=split_every,
194 out=None,
195 )
196
197
198@derived_from(np.ma.core)

Callers 3

_shuffleFunction · 0.70
_compute_rechunkFunction · 0.70
_layerMethod · 0.50

Calls 1

reductionFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…