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