If I have a df and I would like to arrange it by 3 variables: "ID, AGE, SEX". How can I call them when I store those three variables' name in a variable "order_var"
order_var <- "ID, AGE, SEX"
df %>% arrange (paste0 (order_var))
How can I call those three variables?