pkgdown/mathjax-config.html

Skip to contents

Select columns from a vectra query

Usage

select(.data, ...)

Arguments

.data

A vectra_node object.

...

Column names (unquoted).

Value

A new vectra_node with only the selected columns.

Examples

f <- tempfile(fileext = ".vtr")
write_vtr(mtcars, f)
tbl(f) |> select(mpg, cyl) |> collect() |> head()
unlink(f)