powered by
Like mutate() but drops all other columns.
mutate()
transmute(.data, ...)
A new vectra_node with only the computed columns.
vectra_node
A vectra_node object.
Named expressions.
f <- tempfile(fileext = ".vtr") write_vtr(mtcars, f) tbl(f) |> transmute(kpl = mpg * 0.425) |> collect() |> head() unlink(f)
Run the code above in your browser using DataLab