Sortuj DPLYR DATAFRAME

# sort the dataframe in R using multiple variable with Dplyr
mydata %>% arrange(desc(mpg), gear)
Arrogant Ant