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

Function nanprod

xarray/computation/nanops.py:163–169  ·  view source on GitHub ↗
(a, axis=None, dtype=None, out=None, min_count=None)

Source from the content-addressed store, hash-verified

161
162
163def nanprod(a, axis=None, dtype=None, out=None, min_count=None):
164 mask = isnull(a)
165 result = nputils.nanprod(a, axis=axis, dtype=dtype)
166 if min_count is not None:
167 return _maybe_null_out(result, axis, mask, min_count)
168 else:
169 return result
170
171
172def nancumsum(a, axis=None, dtype=None, out=None):

Callers

nothing calls this directly

Calls 2

isnullFunction · 0.90
_maybe_null_outFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…