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