Exclude certain columns from selection
Description
Exclude certain columns from selection
Usage
<Expr>$exclude(columns)
Arguments
columns
|
Given param type:
|
Value
Expr
Examples
library("polars")
# make DataFrame
df = as_polars_df(iris)
# by name(s)
df$select(pl$all()$exclude("Species"))
#> shape: (150, 4)
#> ┌──────────────┬─────────────┬──────────────┬─────────────┐
#> │ Sepal.Length ┆ Sepal.Width ┆ Petal.Length ┆ Petal.Width │
#> │ --- ┆ --- ┆ --- ┆ --- │
#> │ f64 ┆ f64 ┆ f64 ┆ f64 │
#> ╞══════════════╪═════════════╪══════════════╪═════════════╡
#> │ 5.1 ┆ 3.5 ┆ 1.4 ┆ 0.2 │
#> │ 4.9 ┆ 3.0 ┆ 1.4 ┆ 0.2 │
#> │ 4.7 ┆ 3.2 ┆ 1.3 ┆ 0.2 │
#> │ 4.6 ┆ 3.1 ┆ 1.5 ┆ 0.2 │
#> │ 5.0 ┆ 3.6 ┆ 1.4 ┆ 0.2 │
#> │ … ┆ … ┆ … ┆ … │
#> │ 6.7 ┆ 3.0 ┆ 5.2 ┆ 2.3 │
#> │ 6.3 ┆ 2.5 ┆ 5.0 ┆ 1.9 │
#> │ 6.5 ┆ 3.0 ┆ 5.2 ┆ 2.0 │
#> │ 6.2 ┆ 3.4 ┆ 5.4 ┆ 2.3 │
#> │ 5.9 ┆ 3.0 ┆ 5.1 ┆ 1.8 │
#> └──────────────┴─────────────┴──────────────┴─────────────┘
#> shape: (150, 4)
#> ┌──────────────┬─────────────┬──────────────┬─────────────┐
#> │ Sepal.Length ┆ Sepal.Width ┆ Petal.Length ┆ Petal.Width │
#> │ --- ┆ --- ┆ --- ┆ --- │
#> │ f64 ┆ f64 ┆ f64 ┆ f64 │
#> ╞══════════════╪═════════════╪══════════════╪═════════════╡
#> │ 5.1 ┆ 3.5 ┆ 1.4 ┆ 0.2 │
#> │ 4.9 ┆ 3.0 ┆ 1.4 ┆ 0.2 │
#> │ 4.7 ┆ 3.2 ┆ 1.3 ┆ 0.2 │
#> │ 4.6 ┆ 3.1 ┆ 1.5 ┆ 0.2 │
#> │ 5.0 ┆ 3.6 ┆ 1.4 ┆ 0.2 │
#> │ … ┆ … ┆ … ┆ … │
#> │ 6.7 ┆ 3.0 ┆ 5.2 ┆ 2.3 │
#> │ 6.3 ┆ 2.5 ┆ 5.0 ┆ 1.9 │
#> │ 6.5 ┆ 3.0 ┆ 5.2 ┆ 2.0 │
#> │ 6.2 ┆ 3.4 ┆ 5.4 ┆ 2.3 │
#> │ 5.9 ┆ 3.0 ┆ 5.1 ┆ 1.8 │
#> └──────────────┴─────────────┴──────────────┴─────────────┘
#> shape: (0, 0)
#> ┌┐
#> ╞╡
#> └┘
#> shape: (150, 3)
#> ┌──────────────┬─────────────┬───────────┐
#> │ Petal.Length ┆ Petal.Width ┆ Species │
#> │ --- ┆ --- ┆ --- │
#> │ f64 ┆ f64 ┆ cat │
#> ╞══════════════╪═════════════╪═══════════╡
#> │ 1.4 ┆ 0.2 ┆ setosa │
#> │ 1.4 ┆ 0.2 ┆ setosa │
#> │ 1.3 ┆ 0.2 ┆ setosa │
#> │ 1.5 ┆ 0.2 ┆ setosa │
#> │ 1.4 ┆ 0.2 ┆ setosa │
#> │ … ┆ … ┆ … │
#> │ 5.2 ┆ 2.3 ┆ virginica │
#> │ 5.0 ┆ 1.9 ┆ virginica │
#> │ 5.2 ┆ 2.0 ┆ virginica │
#> │ 5.4 ┆ 2.3 ┆ virginica │
#> │ 5.1 ┆ 1.8 ┆ virginica │
#> └──────────────┴─────────────┴───────────┘