MCPcopy Create free account
hub / github.com/dask/dask / sum

Method sum

dask/array/core.py:2595–2614  ·  view source on GitHub ↗

Return the sum of the array elements over the given axis. Refer to :func:`dask.array.sum` for full documentation. See Also -------- dask.array.sum : equivalent function

(self, axis=None, dtype=None, keepdims=False, split_every=None, out=None)

Source from the content-addressed store, hash-verified

2593 )
2594
2595 def sum(self, axis=None, dtype=None, keepdims=False, split_every=None, out=None):
2596 """
2597 Return the sum of the array elements over the given axis.
2598
2599 Refer to :func:`dask.array.sum` for full documentation.
2600
2601 See Also
2602 --------
2603 dask.array.sum : equivalent function
2604 """
2605 from dask.array.reductions import sum
2606
2607 return sum(
2608 self,
2609 axis=axis,
2610 dtype=dtype,
2611 keepdims=keepdims,
2612 split_every=split_every,
2613 out=out,
2614 )
2615
2616 def trace(self, offset=0, axis1=0, axis2=1, dtype=None):
2617 """Return the sum along diagonals of the array.

Callers 15

histogramFunction · 0.95
histogramddFunction · 0.95
lstsqFunction · 0.45
normFunction · 0.45
partial_reduceFunction · 0.45
meta_from_arrayFunction · 0.45
svd_flipFunction · 0.45
einsumFunction · 0.45
sumFunction · 0.45
mean_combineFunction · 0.45

Calls 1

sumFunction · 0.90

Tested by

no test coverage detected