pkgdown/mathjax-config.html
R/verbs_utility.R
transmute.Rd
Like mutate() but drops all other columns.
mutate()
transmute(.data, ...)
A vectra_node object.
vectra_node
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)