17 Matching Annotations
  1. Sep 2020
    1. Exercise 5.7.8

      We noticed that there are observations with no record of delay exceeding 1 hour!

      filter(mean(cumulative_hr_delays) == 0) %>%<br> summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

      For example, "N103US" has 46 flights under 1(one) hour. However, 46 is the total number of flights of "N103US", and none of these flights exceeded 1 hour. So unless I'm wrong, we shouldn't include it (the aforementioned "N103US") as having 46 flights before the first flight that exceeds one hour, because flight number 47 (your next flight) may not exceed an hour either (considering extending the search to the year 2014 and so on)! It may never have delay of more than an hour... and if the scope is restricted to only 2013 the reasoning is the same, we should exclude the 677 flights without any delay more than one hour from the result presented.

    2. Exercise 5.7.8

      test

    3. Exercise 5.7.8

      We noticed that there are observations with no record of delay exceeding 1 hour!

      filter(mean(cumulative_hr_delays) == 0) %>% summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    4. Exercise 5.7.8

      We noticed that there are observations with no record of delay exceeding 1 hour!

      filter(mean(cumulative_hr_delays) == 0) %>% summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    5. For each plane, count the number of flights before the first delay of greater than 1 hour.

      We noticed that there are observations with no record of delay exceeding 1 hour!

      filter(mean(cumulative_hr_delays) == 0) %>% summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    6. For each plane, count the number of flights before the first delay of greater than 1 hour.

      We noticed that there are observations with no record of delay exceeding 1 hour!

      filter(mean(cumulative_hr_delays) == 0) %>% summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    7. For each plane, count the number of flights before the first delay of greater than 1 hour.

      We noticed that there are observations with no record of delay exceeding 1 hour!

      filter(mean(cumulative_hr_delays) == 0) %>% summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    8. For each plane, count the number of flights before the first delay of greater than 1 hour.

      We noticed that there are observations with no record of delay exceeding 1 hour!

      filter(mean(cumulative_hr_delays) == 0) %>% summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    9. For each plane, count the number of flights before the first delay of greater than 1 hour.

      We noticed that there are observations with no record of delay exceeding 1 hour!

      filter(mean(cumulative_hr_delays) == 0) %>% summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    10. For each plane, count the number of flights before the first delay of greater than 1 hour.

      We noticed that there are observations with no record of delay exceeding 1 hour!

      filter(mean(cumulative_hr_delays) == 0) %>% summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    11. For each plane, count the number of flights before the first delay of greater than 1 hour.

      We noticed that there are observations with no record of delay exceeding 1 hour!

      filter(mean(cumulative_hr_delays) == 0) %>% summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    12. For each plane, count the number of flights before the first delay of greater than 1 hour.

      We noticed that there are observations with no record of delay exceeding 1 hour!

      ... filter(mean(cumulative_hr_delays) == 0) %>%

      summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    13. For each plane, count the number of flights before the first delay of greater than 1 hour.

      We noticed that there are observations with no record of delay exceeding 1 hour!

      ... filter(mean(cumulative_hr_delays) == 0) %>%

      summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    14. For each plane, count the number of flights before the first delay of greater than 1 hour.

      We noticed that there are observations with no record of delay exceeding 1 hour!

      ... filter(mean(cumulative_hr_delays) == 0) %>%

      summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    15. Exercise 5.7.8 For each plane, count the number of flights before the first delay of greater than 1 hour.

      We noticed that there are observations with no record of delay exceeding 1 hour!

      ... filter(mean(cumulative_hr_delays) == 0) %>%

      summarise(n = n())

      Results 677 "tailnum" without any record of delay greater than 1 hour!

    16. Exercise 5.7.8 For each plane, count the number of flights before the first delay of greater than 1 hour.

      We also notice cases where there are no records of delays longer than 1 hour!

      ..... filter(mean(cumulative_hr_delays) == 0) %>% summarise(n = n())

      results: 677 "tailnum" no record of delay exceeding 1 hour!