nycflights13
nycflights13 copied to clipboard
why this code not showing any request?flights_sml <- select(flights, year:day, ends_with("delay"), distance, air_time)
flights_sml <- select(flights, year:day, ends_with("delay"), distance, air_time)
flights_sml <- select(flights, year:day, ends_with("delay"), distance, air_time) mutate(flights_sml, gain = dep_delay - arr_delay, speed = distance/air_time * 60)
A tibble: 336,776 × 9
year month day dep_delay arr_delay distance air_time gain speed
ℹ 336,766 more rows
ℹ Use print(n = ...)
to see more rows
flights_sml <- select(flights, year:day, ends_with("delay"), distance, air_time)