Return the maximum along a given axis. Refer to :func:`dask.array.max` for full documentation. See Also -------- dask.array.max : equivalent function
(self, axis=None, keepdims=False, split_every=None, out=None)
| 2544 | return min(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out) |
| 2545 | |
| 2546 | def max(self, axis=None, keepdims=False, split_every=None, out=None): |
| 2547 | """Return the maximum along a given axis. |
| 2548 | |
| 2549 | Refer to :func:`dask.array.max` for full documentation. |
| 2550 | |
| 2551 | See Also |
| 2552 | -------- |
| 2553 | dask.array.max : equivalent function |
| 2554 | """ |
| 2555 | from dask.array.reductions import max |
| 2556 | |
| 2557 | return max(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out) |
| 2558 | |
| 2559 | def argmin(self, axis=None, *, keepdims=False, split_every=None, out=None): |
| 2560 | """Return indices of the minimum values along the given axis. |
no test coverage detected