MCPcopy
hub / github.com/dask/dask / nanargmax

Function nanargmax

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

Source from the content-addressed store, hash-verified

962
963@derived_from(np)
964def nanargmax(a, axis=None, keepdims=False, split_every=None, out=None):
965 return arg_reduction(
966 a,
967 partial(arg_chunk, chunk.nanmax, _nanargmax),
968 partial(arg_combine, _nanargmax),
969 partial(nanarg_agg, _nanargmax),
970 axis=axis,
971 keepdims=keepdims,
972 split_every=split_every,
973 out=out,
974 )
975
976
977@derived_from(np)

Callers

nothing calls this directly

Calls 1

arg_reductionFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…