Data Preprocessing. Transform variable day of week (DAY_WEEK) info a cate- gorical variable. Bin the scheduled departure time into eight bins (in R use function cut()). Use these and all other columns as predictors (excluding DAY_OF_MONTH). Partition the data into training and validation sets.

  1. a. Fit a classification tree to the flight delay variable using all the relevant predictors. Do not include DEP_TIME (actual departure time) in the model because it is unknown at the time of prediction (unless we are generating our predictions of delays after the plane takes off, which is unlikely). Use a pruned tree with maximum of 8 levels, setting cp = 0.001. Express the resulting tree as a set of rules.
  2. b. If you needed to fly between DCA and EWR on a Monday at 7:00 AM, would you be able to use this tree? What other information would you need? Is it available in practice? What information is redundant?
  3. c. Fit the same tree as in (a), this time excluding the Weather predictor. Display both the pruned and unpruned tree. You will find that the pruned tree contains a single terminal node.
    1. i. How is the pruned tree used for classification? (What is the rule for classifying?)
    2. ii. To what is this rule equivalent?
    3. iii. Examine the unpruned tree. What are the top three predictors according to this tree?
    4. iv. Why, technically, does the pruned tree result in a single node?
    5. v. What is the disadvantage of using the top levels of the unpruned tree as opposed to the pruned tree?
    6. vi. Compare this general result to that from logistic regression in the example in Chapter 10. What are possible reasons for the classification tree’s failure to find a good predictive model?