Compute the absolute values
Description
Compute the absolute values
Usage
<Expr>$abs()
Value
Expr
Examples
#> shape: (3, 2)
#> ┌─────┬─────┐
#> │ a ┆ abs │
#> │ --- ┆ --- │
#> │ i32 ┆ i32 │
#> ╞═════╪═════╡
#> │ -1 ┆ 1 │
#> │ 0 ┆ 0 │
#> │ 1 ┆ 1 │
#> └─────┴─────┘