ggplot(flight_summary, aes(x = carrier, y = avg_dep_delay, fill = delay_category)) +geom_col() +labs(title ="Average Departure Delay by Airline",caption ="New York City Flights23 Dataset",x ="Airline Carrier",y ="Average Departure Delay (minutes)",fill ="Carrier") +theme_minimal()
Description of the summary
This visualization I created is a bar graph that shows the average departure delay of various airline carriers. The dataset that was used to create the graph is the NYC Flights 2023 dataset. The graph has two categories for delays: the high delay and low delay. According to the graph, F9, HA and B6 are the airlines with the high delays and the rest present lower delays. The x-axis is for the airline carriers and the y-axis is for the average departure delay in minutes.
One key aspect of the visualization is that it shows clearly the differences in delays among multiple carriers where some carriers have significant delays compared to others who have mild delays and others who have very low delays. The graph enables observations of patterns across carriers and could lead to evaluators assessing further the reasons behind the delays that could be based on scheduling practices, operational challenges, weather or airport traffic.