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)
| 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. |
| 521 | |
| 522 | Refer to :func:`dask.array.max` for full documentation. |
| 523 | |
| 524 | See Also |
| 525 | -------- |
| 526 | dask.array.max : equivalent function |
| 527 | """ |
| 528 | from dask.array.reductions import max |
| 529 | |
| 530 | return max(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out) |
| 531 | |
| 532 | def astype(self, dtype, **kwargs): |
| 533 | """Copy of the array, cast to a specified type. |