I would like to be able to define arguments for dplyr verbs
dplyr
condition <- \"dist > 50\"
and then use these strings in
In the next version of dplyr, it will probably work like this:
condition <- quote(dist > 50) mtcars %>% filter_(condition)