powered by
Select columns from a vectra query
select(.data, ...)
A new vectra_node with only the selected columns.
vectra_node
A vectra_node object.
Column names (unquoted).
f <- tempfile(fileext = ".vtr") write_vtr(mtcars, f) tbl(f) |> select(mpg, cyl) |> collect() |> head() unlink(f)
Run the code above in your browser using DataLab