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