I tried searching but didn\'t find an answer to this question.
I\'m trying to use the select statement in dplyr but am having problems when I try to send it strings
In more recent versions of dplyr, this is possible in select with one_of, as in
select
one_of
my_cols <- c('mpg', 'disp') mtcars %>% select(one_of(my_cols))