Compute square root
Description
Compute square root
Usage
<Expr>$sqrt()
Value
A polars expression
Examples
#> shape: (3, 2)
#> ┌─────┬──────────┐
#> │ a ┆ sqrt │
#> │ --- ┆ --- │
#> │ f64 ┆ f64 │
#> ╞═════╪══════════╡
#> │ 1.0 ┆ 1.0 │
#> │ 2.0 ┆ 1.414214 │
#> │ 4.0 ┆ 2.0 │
#> └─────┴──────────┘