3 Matching Annotations
  1. Apr 2019
  2. Mar 2019
    1. arrange(flights, distance / air_time * 60)

      Do we need a descending order to put the fastest flights first? arrange(flights, desc(distance / air_time 60)) See also: flights %>% mutate(speed = distance / air_time 60) %>% select(tailnum, distance, air_time, speed, dep_time) %>% arrange(desc(speed))