hafen / strata2017

Repository for the "Exploration and visualization of large, complex datasets with R, Hadoop, and Spark" tutorial at Strata Hadoop World 2017
5 stars 3 forks source link

Another plot of flight delay #1

Open schloerke opened 7 years ago

schloerke commented 7 years ago
ggplot(cr_arr_delay, aes(n, mean_delay, label = name)) +
  geom_point() +
  geom_text(hjust = 0, nudge_x = 10000, angle = 0) +
  geom_hline(yintercept = 0, color = "red") + 
  xlim(0, 1.5e6) + 
  xlab("Total Flights") + 
  ylab("Mean Delay")

screen shot 2017-02-27 at 2 45 56 pm

schloerke commented 7 years ago

inside #2