2015 Flight Delays And Cancellations
Which airline should you fly on to avoid significant delays?
@kaggle.usdot_flight_delays
Which airline should you fly on to avoid significant delays?
@kaggle.usdot_flight_delays
The U.S. Department of Transportation's (DOT) Bureau of Transportation Statistics tracks the on-time performance of domestic flights operated by large air carriers. Summary information on the number of on-time, delayed, canceled, and diverted flights is published in DOT's monthly Air Travel Consumer Report and in this dataset of 2015 flight delays and cancellations.
The flight delay and cancellation data was collected and published by the DOT's Bureau of Transportation Statistics.
CREATE TABLE airlines (
"iata_code" VARCHAR,
"airline" VARCHAR
);CREATE TABLE airports (
"iata_code" VARCHAR,
"airport" VARCHAR,
"city" VARCHAR,
"state" VARCHAR,
"country" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE
);CREATE TABLE flights (
"year" BIGINT,
"month" BIGINT,
"day" BIGINT,
"day_of_week" BIGINT,
"airline" VARCHAR,
"flight_number" BIGINT,
"tail_number" VARCHAR,
"origin_airport" VARCHAR,
"destination_airport" VARCHAR,
"scheduled_departure" BIGINT,
"departure_time" DOUBLE,
"departure_delay" DOUBLE,
"taxi_out" DOUBLE,
"wheels_off" DOUBLE,
"scheduled_time" DOUBLE,
"elapsed_time" DOUBLE,
"air_time" DOUBLE,
"distance" BIGINT,
"wheels_on" DOUBLE,
"taxi_in" DOUBLE,
"scheduled_arrival" BIGINT,
"arrival_time" DOUBLE,
"arrival_delay" DOUBLE,
"diverted" BIGINT,
"cancelled" BIGINT,
"cancellation_reason" VARCHAR,
"air_system_delay" DOUBLE,
"security_delay" DOUBLE,
"airline_delay" DOUBLE,
"late_aircraft_delay" DOUBLE,
"weather_delay" DOUBLE
);Anyone who has the link will be able to view this.