Skip to content

Get the index of the minimal value in an array

Source code

Description

Get the index of the minimal value in an array

Usage

<Expr>$arr$arg_min()

Value

Expr

Examples

library(polars)

df = pl$DataFrame(
  values = list(1:2, 2:1),
  schema = list(values = pl$Array(pl$Int32, 2))
)
df$with_columns(
  arg_min = pl$col("values")$arr$arg_min()
)
#> shape: (2, 2)
#> ┌───────────────┬─────────┐
#> │ values        ┆ arg_min │
#> │ ---           ┆ ---     │
#> │ array[i32, 2] ┆ u32     │
#> ╞═══════════════╪═════════╡
#> │ [1, 2]        ┆ 0       │
#> │ [2, 1]        ┆ 1       │
#> └───────────────┴─────────┘