Closed nathaneastwood closed 3 years ago
For example
arrange(mtcars, ammpg = am * mpg)
should create a new column, ammpg, and the resulting data.frame should be ordered by that column.
ammpg
data.frame
This is already a thing since arrange() uses transmute(). Keeping the newly created columns is not a thing in dplyr.
arrange()
transmute()
For example
should create a new column,
ammpg
, and the resultingdata.frame
should be ordered by that column.