Starter template for dplyr
# Edit the code below and hit "Run" to see the updated result!
library(dplyr)
mtcars %>%
filter(hp > 100) %>%
select(mpg, hp, wt) %>% # mpg = miles/gallon, hp = horsepower, wt = weight
arrange(desc(hp))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.