numpy 1.22.4 Pypi GitHub Homepage
Other Docs
NotesParametersReturnsBackRef
sum(a, axis=None, dtype=None, out=None, keepdims=<no value>, initial=<no value>, where=<no value>)

Notes

Arithmetic is modular when using integer types, and no error is raised on overflow.

The sum of an empty array is the neutral element 0:

>>> np.sum([])
0.0

For floating point numbers the numerical precision of sum (and np.add.reduce ) is in general limited by directly adding each number individually to the result causing rounding errors in every step. However, often numpy will use a numerically better approach (partial pairwise summation) leading to improved precision in many use-cases. This improved precision is always provided when no axis is given. When axis is given, it will depend on which axis is summed. Technically, to provide the best speed possible, the improved precision is only used when the summation is along the fast axis in memory. Note that the exact precision may vary depending on other parameters. In contrast to NumPy, Python's math.fsum function uses a slower but more precise approach to summation. Especially when summing a large number of lower precision floating point numbers, such as float32 , numerical errors can become significant. In such cases it can be advisable to use :None:None:`dtype="float64"` to use a higher precision for the output.

Parameters

a : array_like

Elements to sum.

axis : None or int or tuple of ints, optional

Axis or axes along which a sum is performed. The default, axis=None, will sum all of the elements of the input array. If axis is negative it counts from the last to the first axis.

versionadded

If axis is a tuple of ints, a sum is performed on all of the axes specified in the tuple instead of a single axis or all the axes as before.

dtype : dtype, optional

The type of the returned array and of the accumulator in which the elements are summed. The dtype of a is used by default unless a has an integer dtype of less precision than the default platform integer. In that case, if a is signed then the platform integer is used while if a is unsigned then an unsigned integer of the same precision as the platform integer is used.

out : ndarray, optional

Alternative output array in which to place the result. It must have the same shape as the expected output, but the type of the output values will be cast if necessary.

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 input array.

If the default value is passed, then :None:None:`keepdims` will not be passed through to the sum method of sub-classes of ndarray , however any non-default value will be. If the sub-class' method does not implement :None:None:`keepdims` any exceptions will be raised.

initial : scalar, optional

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

versionadded
where : array_like of bool, optional

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

versionadded

Returns

sum_along_axis : ndarray

An array with the same shape as a, with the specified axis removed. If a is a 0-d array, or if :None:None:`axis` is None, a scalar is returned. If an output array is specified, a reference to :None:None:`out` is returned.

Sum of array elements over a given axis.

See Also

add.reduce

Equivalent functionality of :None:None:`add`.

average
cumsum

Cumulative sum of array elements.

mean
ndarray.sum

Equivalent method.

trapz

Integration of array values using the composite trapezoidal rule.

Examples

>>> np.sum([0.5, 1.5])
2.0
>>> np.sum([0.5, 0.7, 0.2, 1.5], dtype=np.int32)
1
>>> np.sum([[0, 1], [0, 5]])
6
>>> np.sum([[0, 1], [0, 5]], axis=0)
array([0, 6])
>>> np.sum([[0, 1], [0, 5]], axis=1)
array([1, 5])
>>> np.sum([[0, 1], [np.nan, 5]], where=[False, True], axis=1)
array([1., 5.])

If the accumulator is too small, overflow occurs:

>>> np.ones(128, dtype=np.int8).sum(dtype=np.int8)
-128

You can also start the sum with a value other than zero:

>>> np.sum([10], initial=5)
15
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

pandas

pandas.core.reshape.pivot.pivot_table
pandas.core.frame.DataFrame.apply
pandas.core.generic.NDFrame.resample
pandas.core.frame.DataFrame.pivot_table
pandas.core.series.Series.resample
pandas.core.frame.DataFrame.resample

dask

dask.array.chunk.coarsen
dask.array.random.RandomState.standard_t
dask.array.reductions.sum
dask.array.routines.apply_over_axes
dask.array.reductions.nansum
dask.array.einsumfuncs.einsum
dask.array.core.Array.sum

skimage

skimage.restoration.uft.uifftn
skimage.restoration.uft.urfftn
skimage.restoration.uft.ufftn
skimage.restoration.uft.image_quad_norm
skimage.restoration.uft.ufft2
skimage.restoration.uft.urfft2
skimage.restoration.uft.uifft2
skimage.measure.profile.profile_line

numpy

10 Elements
numpy.trapz
numpy.ma.core.sum
numpy.nanmean
numpy.sum
numpy.matrixlib.defmatrix.matrix.sum
numpy.nanvar
numpy.ma.core.MaskedArray.sum
numpy.linalg.linalg._multi_svd_norm
numpy.nansum
numpy.cumsum

scipy

scipy.integrate._quadrature.newton_cotes
scipy.special._logsumexp.logsumexp
scipy.optimize._dual_annealing.dual_annealing
scipy.interpolate._rbfinterp.RBFInterpolator

matplotlib

matplotlib.axes._axes.Axes.hexbin
matplotlib.pyplot.hexbin

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


GitHub : /numpy/core/fromnumeric.py#2160
type: <class 'function'>
Commit: