mirror of
https://github.com/nushell/nushell
synced 2024-12-28 22:13:10 +00:00
20 lines
225 B
Markdown
20 lines
225 B
Markdown
|
---
|
||
|
title: dfr arg-max
|
||
|
layout: command
|
||
|
version: 0.59.0
|
||
|
---
|
||
|
|
||
|
Return index for max value in series
|
||
|
|
||
|
## Signature
|
||
|
|
||
|
```> dfr arg-max ```
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
Returns index for max value
|
||
|
```shell
|
||
|
> [1 3 2] | dfr to-df | dfr arg-max
|
||
|
```
|
||
|
|