View source: R/verbs_utility.R
| rename | R Documentation |
Rename columns
rename(.data, ...)
.data |
A |
... |
Rename pairs: |
A new vectra_node with renamed columns.
f <- tempfile(fileext = ".vtr")
write_vtr(mtcars, f)
tbl(f) |> rename(miles_per_gallon = mpg) |> collect() |> head()
unlink(f)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.