Return indices of the minimum values along the given axis. Refer to :func:`dask.array.argmin` for full documentation. See Also -------- dask.array.argmin : equivalent function
(self, axis=None, *, keepdims=False, split_every=None, out=None)
| 2555 | return max(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out) |
| 2556 | |
| 2557 | def argmin(self, axis=None, *, keepdims=False, split_every=None, out=None): |
| 2558 | """Return indices of the minimum values along the given axis. |
| 2559 | |
| 2560 | Refer to :func:`dask.array.argmin` for full documentation. |
| 2561 | |
| 2562 | See Also |
| 2563 | -------- |
| 2564 | dask.array.argmin : equivalent function |
| 2565 | """ |
| 2566 | from dask.array.reductions import argmin |
| 2567 | |
| 2568 | return argmin( |
| 2569 | self, axis=axis, keepdims=keepdims, split_every=split_every, out=out |
| 2570 | ) |
| 2571 | |
| 2572 | def argmax(self, axis=None, *, keepdims=False, split_every=None, out=None): |
| 2573 | """Return indices of the maximum values along the given axis. |