Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using python solve the solve the following:Predicting Delayed Flights. The file FlightDelays.csv contains information on all commercial flights departing the Washington, DC area and arriving
Using python solve the solve the following:Predicting Delayed Flights. The file FlightDelays.csv contains information on all commercial flights departing the Washington, DC area and arriving in New York during January For each flight, there is information on the departure and arrival airports, the distance of the route, the scheduled time and date of the flight, and so on The variable that we are trying to predict is whether or not a flight is delayed. A delay is defined as an arrival that is at least minutes later than scheduled.
Data Preprocessing. Transform variable day of week DAYWEEK into a categorical variable.
Bin the scheduled departure time into eight bins. Use these and all other columns as predictors excluding DAYOFMONTH Partition the data into training and validation sets.
a Fit a classification tree to the flight delay variable using all the relevant predictors. Do not
include DEPTIME 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 tree with maximum depth and minimum impurity decrease
Express the resulting tree as a set of rules.
b If you needed to fly between DCA and EWR on a Monday at : AM would you be able to
use this tree? What other information would you need? Is it available in practice? What
information is redundant?
c Fit the same tree as in a this time excluding the Weather predictor. Display the
resulting tree.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started