mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 20:03:54 +01:00
19 lines
224 B
Markdown
19 lines
224 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
|
||
|
```
|