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