# A tibble: 36 × 3
# Groups: name [3]
name month total
<chr> <fct> <int>
1 United Air Lines Inc. March 7243
2 United Air Lines Inc. May 6976
3 United Air Lines Inc. Oct 6888
4 United Air Lines Inc. April 6803
5 United Air Lines Inc. July 6796
6 United Air Lines Inc. Jan 6780
7 JetBlue Airways March 6595
8 United Air Lines Inc. June 6576
9 United Air Lines Inc. Aug 6548
10 United Air Lines Inc. Sep 6401
# ℹ 26 more rows
Plot
ggplot(flights_months_top3,aes(x=month, y= total, fill =name))+geom_col(position =position_dodge(width =0.9),width =0.4)+labs(title ="Monthly Flight Volume for Top 3 Airlines (NYC,2013)",x ="Month",y="Number of Flights",color ="Airline",caption ="Source:FAA Aircraft registry")+theme_minimal()+scale_fill_brewer(palette ="Set2")
Essay
This bar graph shows the monthly flight volume of the top three airlines departing from New York City in 2013: United Airlines, JetBlue Airways, and American Air Lines. The x-axis represents the months from January to December, and the y-axis shows the number of flights. Each airline is represented by a different color to make comparisons easier. From the graph, we can see that United Air Lines had the highest number of flights throughout the year, followed by American Airlines and JetBlue Airways. The busiest months appear to be between March and June, while flight counts slightly dropped around August and September. I chose this visualization because it clearly shows how airline activity changes over time and makes it easy to compare the top airlines in one view. One interesting thing I noticed is that United Airlines consistently leads every month, showing how dominant it was in NYC’s flight traffic during 2013.