Keep the original root name of the expression.
Description
Keep the original root name of the expression.
Usage
<Expr>$name$keep()
Value
A polars expression
Examples
library("polars")
df <- pl$DataFrame(alice = 1:3)
df$select(pl$col("alice")$alias("bob")$name$keep())
#> shape: (3, 1)
#> ┌───────┐
#> │ alice │
#> │ --- │
#> │ i32 │
#> ╞═══════╡
#> │ 1 │
#> │ 2 │
#> │ 3 │
#> └───────┘