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)
| 2531 | return all(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out) |
| 2532 | |
| 2533 | def min(self, axis=None, keepdims=False, split_every=None, out=None): |
| 2534 | """Return the minimum along a given axis. |
| 2535 | |
| 2536 | Refer to :func:`dask.array.min` for full documentation. |
| 2537 | |
| 2538 | See Also |
| 2539 | -------- |
| 2540 | dask.array.min : equivalent function |
| 2541 | """ |
| 2542 | from dask.array.reductions import min |
| 2543 | |
| 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. |
no test coverage detected