View source: R/verbs_utility.R
| transmute | R Documentation |
Like mutate() but drops all other columns.
transmute(.data, ...)
.data |
A |
... |
Named expressions. |
A new vectra_node with only the computed columns.
f <- tempfile(fileext = ".vtr")
write_vtr(mtcars, f)
tbl(f) |> transmute(kpl = mpg * 0.425) |> collect() |> head()
unlink(f)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.