Return the minimum along a given axis. Refer to :func:`dask.array.min` for full documentation. See Also -------- dask.array.min : equivalent function
(self, axis=None, keepdims=False, split_every=None, out=None)
| 2537 | return all(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out) |
| 2538 | |
| 2539 | def min(self, axis=None, keepdims=False, split_every=None, out=None): |
| 2540 | """Return the minimum along a given axis. |
| 2541 | |
| 2542 | Refer to :func:`dask.array.min` for full documentation. |
| 2543 | |
| 2544 | See Also |
| 2545 | -------- |
| 2546 | dask.array.min : equivalent function |
| 2547 | """ |
| 2548 | from dask.array.reductions import min |
| 2549 | |
| 2550 | return min(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out) |
| 2551 | |
| 2552 | def max(self, axis=None, keepdims=False, split_every=None, out=None): |
| 2553 | """Return the maximum along a given axis. |
no test coverage detected