MCPcopy Index your code
hub / github.com/pydata/xarray / nanmax

Function nanmax

xarray/computation/nanops.py:76–80  ·  view source on GitHub ↗
(a, axis=None, out=None)

Source from the content-addressed store, hash-verified

74
75
76def nanmax(a, axis=None, out=None):
77 if a.dtype.kind == "O":
78 return _nan_minmax_object("max", dtypes.get_neg_infinity(a.dtype), a, axis)
79
80 return nputils.nanmax(a, axis=axis)
81
82
83def nanargmin(a, axis=None):

Callers

nothing calls this directly

Calls 1

_nan_minmax_objectFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…