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)
| 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. |
| 2576 | |
| 2577 | Refer to :func:`dask.array.argmax` for full documentation. |
| 2578 | |
| 2579 | See Also |
| 2580 | -------- |
| 2581 | dask.array.argmax : equivalent function |
| 2582 | """ |
| 2583 | from dask.array.reductions import argmax |
| 2584 | |
| 2585 | return argmax( |
| 2586 | self, axis=axis, keepdims=keepdims, split_every=split_every, out=out |
| 2587 | ) |
| 2588 | |
| 2589 | def sum(self, axis=None, dtype=None, keepdims=False, split_every=None, out=None): |
| 2590 | """ |