-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
62 lines (54 loc) · 4.29 KB
/
about.html
File metadata and controls
62 lines (54 loc) · 4.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="index.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8" />
<title>An Analysis of Flight Delays in the US | DS 4200 Final Project</title>
</head>
<body>
<!-- NAV -->
<div class="nav">
<div>
<a href="index.html">
<h1>An Analysis of Flight Delays in the US</h1>
</a>
<h1 class="gray">DS 4200 Final Project</h1>
</div>
<div class="nav-items">
<a href="about.html" class="selected-nav">About</a>
<a href="index.html" class="nav-item">Project</a>
</div>
</div>
<div class="about-content">
<!-- MEMBERS -->
<div class="about-item">
<p class="subheading">Group members</p>
<p class="gray">Daniel Joung, Rebecca Choi, Iverson Qiu</p>
</div>
<!-- Topic -->
<div class="about-item">
<p class="subheading">Topic Introduction</p>
<p class="gray">The topic we will explore for this project is air traffic, precisely data revolving around US Domestic flights from various cities and delays. We chose this topic because air travel is a highly regulated industry with lots of variables to explore. Furthermore, we all love to travel but have had a couple of bad experiences waiting in the airport with delays. Therefore we thought it’ll be a very interesting topic where we could dive further into. As for the data set, because people are traveling all day every day every year, there are likely lots of patterns that could be drawn out of air traffic data, which we wanted to translate into simple and informative visualizations.
</p>
</div>
<!-- Data -->
<div class="about-item">
<p class="subheading">Data</p>
<p class="gray">For this study, we will be using 2 datasets. The first dataset contains flight performance data for many different airlines and from years between 2013 - 2023 which we extracted from Kaggle. Some of these flight carriers include ones that we have flown with in the past including Jet Blue, Delta, American, and United. The dataset includes arrival statistics across multiple airports, detailing the number of flights, delays, cancellations, and diversions. The dataset tracks various causes of delays, such as carrier-related, weather, National Airspace System, security, and late aircraft delays. It consists of attributes such as the airport name, flight counts, delay durations, and disruption counts. This data is valuable for analyzing airline punctuality, identifying delay patterns, and assessing operational efficiency.<br /><br />The other dataset we will be using is from the Bureau of Transportation Statistics Website which contains performance data of US airlines based on income. While the dataset contains subsectors of income such as quarters, international, domestic, and Latin America income, we just used the overall income for a simple income to delay correlation analysis. By merging the main airline dataframe with this simple income/loss dataframe, we will be able to visualize relationships between the 2 datasets.
</p>
</div>
<!-- References -->
<div class="about-item">
<p class="subheading">References</p>
<p class="gray">
<ul class="gray">
<li class="gray"><a class="gray underline link-p" href="https://www.collinsaerospace.com/what-we-do/capabilities/connected-ecosystem/feature-stories/how-data-unlocks-huge-benefits-in-the-aviation-industry">How data unlocks huge benefits in the aviation industry | Collins Aerospace</a></li>
<li class="gray"><a class="gray underline link-p" href="https://link.springer.com/article/10.1007/s43621-024-00781-7?utm_source=chatgpt.com">A review on air traffic flow management optimization: trends, challenges, and future directions | Discover Sustainability</a></li>
</ul>
</p>
</div>
</div>
</body>