Return the cumulative sum of the elements along the given axis. Refer to :func:`dask.array.cumsum` for full documentation. See Also -------- dask.array.cumsum : equivalent function
(self, axis, dtype=None, out=None, *, method="sequential")
| 2755 | ) |
| 2756 | |
| 2757 | def cumsum(self, axis, dtype=None, out=None, *, method="sequential"): |
| 2758 | """Return the cumulative sum of the elements along the given axis. |
| 2759 | |
| 2760 | Refer to :func:`dask.array.cumsum` for full documentation. |
| 2761 | |
| 2762 | See Also |
| 2763 | -------- |
| 2764 | dask.array.cumsum : equivalent function |
| 2765 | """ |
| 2766 | from dask.array.reductions import cumsum |
| 2767 | |
| 2768 | return cumsum(self, axis, dtype, out=out, method=method) |
| 2769 | |
| 2770 | def cumprod(self, axis, dtype=None, out=None, *, method="sequential"): |
| 2771 | """Return the cumulative product of the elements along the given axis. |