# NOT RUN {
df <- head(ToothGrowth)
df
# Select column using standard evaluation
df %>% df_select(vars = c("dose", "len"))
# Select column using non-standard evaluation
df %>% df_select(dose, len)
# }
Run the code above in your browser using DataLab