View source: R/wrangling_data.R
transmutate | R Documentation |
A function between dplyr's transmute and mutate
transmutate(.data, ...)
.data |
Data frame to pass to the function |
... |
Variables to pass to the function |
Data frame with mutated variables
and none of the variables used in the mutations,
but, unlike dplyr::transmute()
, all other unnamed variables.
https://stackoverflow.com/questions/51428156/dplyr-mutate-transmute-drop-only-the-columns-used-in-the-formula
pluck(emperors, "wikipedia")
transmutate(emperors$wikipedia, Beginning = Begin)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.