| select | R Documentation |
Select columns from a vectra query
select(.data, ...)
.data |
A |
... |
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.