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

Function nanargmax

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

arg_reductionFunction · 0.85

Tested by

no test coverage detected