Select from an empty DataFrame
Description
pl$select(…)
is a shorthand for
pl$DataFrame(list())$select(…)
Usage
pl$select(...)
Arguments
…
|
Expressions |
Value
a DataFrame
Examples
#> shape: (4, 2)
#> ┌──────┬─────────┐
#> │ ints ┆ letters │
#> │ --- ┆ --- │
#> │ i32 ┆ str │
#> ╞══════╪═════════╡
#> │ 1 ┆ a │
#> │ 2 ┆ b │
#> │ 3 ┆ c │
#> │ 4 ┆ d │
#> └──────┴─────────┘