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)
| 504 | return all(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out) |
| 505 | |
| 506 | def min(self, axis=None, keepdims=False, split_every=None, out=None): |
| 507 | """Return the minimum along a given axis. |
| 508 | |
| 509 | Refer to :func:`dask.array.min` for full documentation. |
| 510 | |
| 511 | See Also |
| 512 | -------- |
| 513 | dask.array.min : equivalent function |
| 514 | """ |
| 515 | from dask.array.reductions import min |
| 516 | |
| 517 | return min(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out) |
| 518 | |
| 519 | def max(self, axis=None, keepdims=False, split_every=None, out=None): |
| 520 | """Return the maximum along a given axis. |