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

Function argmin

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

Source from the content-addressed store, hash-verified

946
947@derived_from(np)
948def argmin(a, axis=None, keepdims=False, split_every=None, out=None):
949 return arg_reduction(
950 a,
951 partial(arg_chunk, chunk.min, chunk.argmin),
952 partial(arg_combine, chunk.argmin),
953 partial(arg_agg, chunk.argmin),
954 axis=axis,
955 keepdims=keepdims,
956 split_every=split_every,
957 out=out,
958 )
959
960
961@derived_from(np)

Callers 1

argminMethod · 0.90

Calls 1

arg_reductionFunction · 0.85

Tested by

no test coverage detected