MCPcopy
hub / github.com/pydata/xarray / nanmin

Function nanmin

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

Source from the content-addressed store, hash-verified

67
68
69def nanmin(a, axis=None, out=None):
70 if a.dtype.kind == "O":
71 return _nan_minmax_object("min", dtypes.get_pos_infinity(a.dtype), a, axis)
72
73 return nputils.nanmin(a, axis=axis)
74
75
76def nanmax(a, axis=None, out=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…