powered by
Unlike mutate.(), transmute.() keeps only the variables that you create
mutate.()
transmute.()
transmute.(.df, ..., .by = NULL, by = NULL)
A data.frame or data.table
Columns to create/modify
Columns to group by
This argument has been renamed to .by and is deprecated
# NOT RUN { mtcars %>% transmute.(displ_l = disp / 61.0237) # }
Run the code above in your browser using DataLab