Return indices of the maximum values along the given axis. Refer to :func:`dask.array.argmax` for full documentation. See Also -------- dask.array.argmax : equivalent function
(self, axis=None, *, keepdims=False, split_every=None, out=None)
| 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. |
| 2582 | |
| 2583 | Refer to :func:`dask.array.argmax` for full documentation. |
| 2584 | |
| 2585 | See Also |
| 2586 | -------- |
| 2587 | dask.array.argmax : equivalent function |
| 2588 | """ |
| 2589 | from dask.array.reductions import argmax |
| 2590 | |
| 2591 | return argmax( |
| 2592 | self, axis=axis, keepdims=keepdims, split_every=split_every, out=out |
| 2593 | ) |
| 2594 | |
| 2595 | def sum(self, axis=None, dtype=None, keepdims=False, split_every=None, out=None): |
| 2596 | """ |