Skip to content

Commit

Permalink
Align text and code
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Apr 18, 2021
1 parent 47585ee commit 952d1ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datetimes.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ flights_dt %>%
mutate(minute = minute(dep_time)) %>%
group_by(minute) %>%
summarise(
avg_delay = mean(arr_delay, na.rm = TRUE),
avg_delay = mean(dep_delay, na.rm = TRUE),
n = n()) %>%
ggplot(aes(minute, avg_delay)) +
geom_line()
Expand Down

0 comments on commit 952d1ab

Please sign in to comment.