library(dplyr)
specials <- names(mtcars)[1:2]
specials[1]
i=1
セットアップが完了しました。これで動作します...
mtcars %>%
select_(specials[i], ~gear, ~carb)
nse がフィルターの追加に失敗するのはなぜですか?
mtcars %>%
select_(specials[i], ~gear, ~carb) %>%
filter_(specials[i] == 21.4)