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")
| 2763 | ) |
| 2764 | |
| 2765 | def cumsum(self, axis, dtype=None, out=None, *, method="sequential"): |
| 2766 | """Return the cumulative sum of the elements along the given axis. |
| 2767 | |
| 2768 | Refer to :func:`dask.array.cumsum` for full documentation. |
| 2769 | |
| 2770 | See Also |
| 2771 | -------- |
| 2772 | dask.array.cumsum : equivalent function |
| 2773 | """ |
| 2774 | from dask.array.reductions import cumsum |
| 2775 | |
| 2776 | return cumsum(self, axis, dtype, out=out, method=method) |
| 2777 | |
| 2778 | def cumprod(self, axis, dtype=None, out=None, *, method="sequential"): |
| 2779 | """Return the cumulative product of the elements along the given axis. |