A friendly way to select a column or several columns. Mainly for non-pipe usage
It is recommended to use known select functions to do pipe manipulations. Otherwise convert to tibble
# NOT RUN {select_col(iris,Petal.Length,Sepal.Length,Species,Petal.Width)
# A pipe friendly example# }# NOT RUN {library(dplyr)
as_tibble(iris) %>%
select_col(Species)
# }