We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
Experimental f_list() #59
5ac45d5
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()
Sorry, something went wrong.
Also need to support uq() on the RHS
uq()
Document and export f_list
deba043
Add as_f_list. Closes #59.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: