8,000 rows · 10 columns

Flight delays

Eight thousand domestic flights across six carriers and fourteen airports, with departure and arrival delay, cancellations, and a delay distribution that is long-tailed rather than normal.

What is in it, and what is wrong with it

Cancelled flights carry null delays rather than zeros, so an average that silently drops nulls tells a different story from one that treats a cancellation as a very long delay. Delay is not symmetric: the median flight leaves a minute or two early, while the mean is dragged positive by a small number of very bad days. This is the dataset to use when someone asks for "average delay".

Schema

ColumnTypeDescription
flight_datedateScheduled date of departure.
carriercategoryTwo-letter carrier code.
flight_nointegerFlight number.
origincategoryOrigin airport code.
destcategoryDestination airport code.
sched_dep_hourintegerScheduled departure hour, 0–23.
dep_delay_minintegerDeparture delay in minutes; negative means early. Null if cancelled.
arr_delay_minintegerArrival delay in minutes. Null if cancelled.
distance_miintegerGreat-circle distance in miles.
cancelledbooleanWhether the flight was cancelled.

First twelve rows

flight_datecarrierflight_noorigindestsched_dep_hourdep_delay_minarr_delay_min
2023-01-01WN4324DFWATL171528
2023-01-01UA875DTWORD14227226
2023-01-01AS795SEASFO73-1
2023-01-01WN6229DENORD92821
2023-01-01WN5021MCOMSP93-1
2023-01-01UA6211PHXJFK81-2
2023-01-01AA3212PHXJFK14126123
2023-01-01AS6303ATLBOS1264
2023-01-01AS4752PHXSFO20
2023-01-01WN871ORDBOS2112-7
2023-01-01AS5276BOSJFK9-40
2023-01-01B63571SEADFW9-17-30

Showing the first 8 of 10 columns. Open the full table in the Explorer.