Open the assign07.qmd file and complete the exercises.
This is somewhat open-ended assignment.
The file domestic_flights_jan_2016.csv is nearly the same as the me_flights.csv file we work with in the temporal data chapter except it has two additional columns for destination city and state and it is for all domestic flights reported for on-time performance in the US for January 2016. You’ll find it helpful to recreate all of the calculated fields we create in the unit.
You are to write a report uploaded to RPubs that compares what you consider interesting metrics for a select group of carriers, airports, or states. You may not parrot the queries from the text or the practice questions. Your report must contain at least two questions that you ask about the flights data. Your answers to those questions must also contain a visualization of the data or a table along with a specific answer in the narrative.
The csv file contains 445,827 observations. You’ll want to subset the data to the area(s) you are looking at, then write it out to a csv file using write_csv(), and start your assignment by importing that csv instead. Do this in a separate script file that you don’t need to submit. In your narrative, describe your subset. I don’t need to see how you subsetted the data because it might cause performance issues when you render the document. Note: you will receive deductions for not using tidyverse syntax in this assignment. That includes the use of filter, mutate, and the up-to-date pipe operator |>.
The Grading Rubric is available at the end of this document.
This is your work area. Add as many code cells as you need.
# Load the required librarieslibrary(tidyverse)
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr 1.1.4 ✔ readr 2.1.5
✔ forcats 1.0.0 ✔ stringr 1.5.1
✔ ggplot2 3.5.1 ✔ tibble 3.2.1
✔ lubridate 1.9.4 ✔ tidyr 1.3.1
✔ purrr 1.0.4
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
# Import the data (assuming the file path is correct)flights_data <-read_csv("domestic_flights_jan_2016.csv")
Rows: 445827 Columns: 21
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (9): FlightDate, Carrier, TailNum, Origin, OriginCityName, OriginState,...
dbl (12): FlightNum, CRSDepTime, DepTime, WheelsOff, WheelsOn, CRSArrTime, A...
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
# Subset the data - example for flights with carrier "AA" (American Airlines)subset_data <- flights_data |>filter(Carrier =="AA")# Write the subsetted data to a new CSV filewrite_csv(subset_data, "subset_flights_data.csv")
on_time_performance <- subset_data |>group_by(Origin) |>summarise(average_on_time =mean(ArrTime <=0, na.rm =TRUE))ggplot(on_time_performance, aes(x = Origin, y = average_on_time)) +geom_bar(stat ="identity", fill ="steelblue") +theme_minimal() +labs(title ="On-time Performance by Airport for Airline AA",x ="Airport",y ="Average On-time Performance")
# Question 2: Flight delays by day of the weekflights_data |>mutate(FlightDate =factor(FlightDate, levels =c("Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"))) |>group_by(FlightDate) |>summarise(average_delay =mean(ArrTime, na.rm =TRUE)) |>ggplot(aes(x = FlightDate, y = average_delay)) +geom_bar(stat ="identity", fill ="tomato") +theme_minimal() +labs(title ="Average Flight Delay by Day of the Week",x ="FlightDate",y ="Average Arrival Delay (minutes)")
1 Submission
To submit your assignment:
Change the author name to your name in the YAML portion at the top of this document
Render your document to html and publish it to RPubs.
Submit the link to your Rpubs document in the Brightspace comments section for this assignment.
Click on the “Add a File” button and upload your .qmd file for this assignment to Brightspace.
2 Grading Rubric
Item
(percent overall)
100% - flawless
67% - minor issues
33% - moderate issues
0% - major issues or not attempted
Question 1 query.
(22%)
Relevant question that is fully answered in the query or queries.
Question 1 visualization or table.
(15%)
Visually pleasant and relevant to the question.
Question 2 query.
(22%)
Relevant question that is fully answered in the query or queries.
Question 2 visualization or table.
(15%)
Visually pleasant and relevant to the question.
Data was subsetted separately from the assignment.
(10%)
You included the description of your subsetted data in your narrative.
You subsetted the data but didn’t include the description in the narrative.
NA
You didn’t subset the data.
Messages and/or errors suppressed from rendered document and all code is shown.
(8%)
Submitted properly to Brightspace
(8%)
NA
NA
You must submit according to instructions to receive any credit for this portion.