dask 2021.10.0

NotesParametersReturns
nansum(a, axis=None, dtype=None, keepdims=False, split_every=None, out=None)

This docstring was copied from numpy.nansum.

Some inconsistencies with the Dask version may exist.

In NumPy versions <= 1.9.0 Nan is returned for slices that are all-NaN or empty. In later versions zero is returned.

Notes

If both positive and negative infinity are present, the sum will be Not A Number (NaN).

Parameters

a : array_like

Array containing numbers whose sum is desired. If a is not an array, a conversion is attempted.

axis : {int, tuple of int, None}, optional

Axis or axes along which the sum is computed. The default is to compute the sum of the flattened array.

dtype : data-type, optional

The type of the returned array and of the accumulator in which the elements are summed. By default, the dtype of a is used. An exception is when a has an integer type with less precision than the platform (u)intp. In that case, the default will be either (u)int32 or (u)int64 depending on whether the platform is 32 or 64 bits. For inexact inputs, dtype must be inexact.

versionadded
out : ndarray, optional

Alternate output array in which to place the result. The default is None . If provided, it must have the same shape as the expected output, but the type will be cast if necessary. See ufuncs-output-type for more details. The casting of NaN to integer can yield unexpected results.

versionadded
keepdims : bool, optional

If this is set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, the result will broadcast correctly against the original a.

If the value is anything but the default, then keepdims will be passed through to the mean or sum methods of sub-classes of :None:None:`ndarray`. If the sub-classes methods does not implement keepdims any exceptions will be raised.

versionadded
initial : scalar, optional (Not supported in Dask)

Starting value for the sum. See :None:None:`~numpy.ufunc.reduce` for details.

versionadded
where : array_like of bool, optional (Not supported in Dask)

Elements to include in the sum. See :None:None:`~numpy.ufunc.reduce` for details.

versionadded

Returns

nansum : ndarray.

A new array holding the result is returned unless :None:None:`out` is specified, in which it is returned. The result has the same size as a, and the same shape as a if :None:None:`axis` is not None or a is a 1-d array.

Return the sum of array elements over a given axis treating Not a Numbers (NaNs) as zero.

See Also

isfinite

Show which elements are not NaN or +/-inf.

isnan

Show which elements are NaN.

numpy.sum

Sum across array propagating NaNs.

Examples

This example is valid syntax, but we were not able to check execution
>>> np.nansum(1)  # doctest: +SKIP
1
This example is valid syntax, but we were not able to check execution
>>> np.nansum([1])  # doctest: +SKIP
1
This example is valid syntax, but we were not able to check execution
>>> np.nansum([1, np.nan])  # doctest: +SKIP
1.0
This example is valid syntax, but we were not able to check execution
>>> a = np.array([[1, 1], [1, np.nan]])  # doctest: +SKIP
... np.nansum(a) # doctest: +SKIP 3.0
This example is valid syntax, but we were not able to check execution
>>> np.nansum(a, axis=0)  # doctest: +SKIP
array([2.,  1.])
This example is valid syntax, but we were not able to check execution
>>> np.nansum([1, np.nan, np.inf])  # doctest: +SKIP
inf
This example is valid syntax, but we were not able to check execution
>>> np.nansum([1, np.nan, np.NINF])  # doctest: +SKIP
-inf
This example is valid syntax, but we were not able to check execution
>>> from numpy.testing import suppress_warnings  # doctest: +SKIP
... with suppress_warnings() as sup: # doctest: +SKIP
...  sup.filter(RuntimeWarning)
...  np.nansum([1, np.nan, np.inf, -np.inf]) # both +/- infinity present nan
See :

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /dask/array/reductions.py#428
type: <class 'function'>
Commit: