dplyr

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))

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.