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