Closed hadley closed 8 years ago
In order to do, e.g.
var <- "mpg" dplyr::mutate_(mtcars, list(paste0(var, "2") ~ uq(var) * 2))
Maybe that implies we want
f_list(paste0(var, "2") ~ uq(var) * 2)
to be equivalent to
f_list(mpg2 = ~uq(var) * 2)
i.e. we iterate over a list extracting replacing the name with the evaluated LHS.
Need to think through whether SE functions should use ... or list(), and if that depends on whether or not you're using NSE as well.
...
list()
Also need to support uq() on the RHS
uq()
In order to do, e.g.
Maybe that implies we want
to be equivalent to
i.e. we iterate over a list extracting replacing the name with the evaluated LHS.