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

Function argmin

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

Source from the content-addressed store, hash-verified

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

Callers 1

argminMethod · 0.90

Calls 1

arg_reductionFunction · 0.85

Tested by

no test coverage detected