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