pkgdown/mathjax-config.html
R/verbs_basic.R
select.Rd
Select columns from a vectra query
select(.data, ...)
A vectra_node object.
vectra_node
Column names (unquoted).
A new vectra_node with only the selected columns.
f <- tempfile(fileext = ".vtr") write_vtr(mtcars, f) tbl(f) |> select(mpg, cyl) |> collect() |> head() unlink(f)