library(dplyr)
specials <- names(mtcars)[1:2]
specials[1]
i=1
setup is complete, this works...
mtcars %>%
select_(specials[i], ~gear, ~carb)
why does the nse fail on adding the filter?
mtcars %>%
select_(specials[i], ~gear, ~carb) %>%
filter_(specials[i] == 21.4)