Nicholas Horton

Using RMarkdown

R output

Other forms of R output are also displayed as they are produced.

require(nycflights13)
## Loading required package: nycflights13
january <- filter(flights, month==1)
ggplot(data=january, aes(x=dep_time, y=arr_delay)) + geom_point()  + theme(legend.position="none") + labs(title="")
## Warning in loop_apply(n, do.ply): Removed 606 rows containing missing
## values (geom_point).

Delays seem to increase as a function of departure time (in 24 hour format), up until the late evening.