Closed FrancescAlted closed 2 years ago
Here it is an example:
In: ia.nansum(ia.full((2,), np.nan)) Out: nan
whereas NumPy:
In: np.nansum([np.nan, np.nan]) Out: 0.0
Here it is an example:
whereas NumPy: