Index of min value
Description
Get the index of the minimal value.
Usage
<Expr>$arg_min()
Value
Expr
Examples
library("polars")
pl$DataFrame(
a = c(6, 1, 0, NA, Inf, NaN)
)$with_columns(arg_min = pl$col("a")$arg_min())
#> shape: (6, 2)
#> ┌──────┬─────────┐
#> │ a ┆ arg_min │
#> │ --- ┆ --- │
#> │ f64 ┆ u32 │
#> ╞══════╪═════════╡
#> │ 6.0 ┆ 2 │
#> │ 1.0 ┆ 2 │
#> │ 0.0 ┆ 2 │
#> │ null ┆ 2 │
#> │ inf ┆ 2 │
#> │ NaN ┆ 2 │
#> └──────┴─────────┘