Homework 2
Individual submissions due: October 26, 2018 @ 11:59pm
Instructions
Obtain the Github repository you will use to complete homework 2, which contains a starter RMarkdown file named homework_2.Rmd
, which you will use to do your work and write-up when completing the questions below. Be sure to save, commit, and push (upload) frequently to Github so that you have incremental snapshots of your work. When you’re done, follow the How to submit section below to setup a Pull Request, which will be used for feedback.
Individual rough draft versus the group draft
Remember that you will be working through the homework assignment individually first (this is what is due by the end of the day on October 26th), and later you will be assigned to a group where you will clean up the draft. As written in the course syllabus:
Homework assignments will completed in two stages. The first is the “rough draft” stage that each student must complete on their own. Grades for these submissions will be primarily based on the correctness of your answers to each question. The second is the “group draft” stage, which will begin approximately 3 days after the rough drafts are due. You will be assigned into groups where you will discuss the questions and assemble a final draft together. You will not know these groups beforehand, and they will change with each assignment. Grades for the group-submitted final drafts will, in addition to correctness, be based on document formatting, visualization quality, writing quality, and code style.
Both the individual rough draft and group report homework submissions are to be completed using the R Markdown format and they must successfully knit to HTML and PDF in a clean RStudio environment. In the individual submissions, full sentences are required when the question is asking for a written response. In the group reports, full sentences with proper grammar and punctuation are to be used throughout the report. The group reports should explain what you are doing with each chunk of code and to interpret the meaning of what you calculate so that a person that is not familiar with the problem could follow your logic.
Important! Several of these qucstions ask for explanations after obtaining the correct answer. For these, you do not have to write very long responses, just write enough to express the correct answer. When you are assigned into groups, that is when you will need to write everything out in full sentences.
Overview
For this homework assignment, you will be exploring a dataset about the passengers on the Titanic, the British passenger liner that crashed into an iceberg during its maiden voyage and sank early in the morning on April 15, 1912. The tragedy stands out as one of the deadliest commercial maritime disasters during peacetime in history. More than half of the passengers and crew died, due in large part to poor safety standards, such as not having enough lifeboats or not ensuring all lifeboats were filled to capacity during evacuation.
This dataset presents the most up-to-date knowledge about the passengers that were on the Titanic, including whether or not they survived. This dataset is frequently used to introduce using machine learning techniques that take multiple inputs and use them to predict an outcome, in this case whether a passenger is likely to have survived. While we won’t be using a machine learning model in this assignment, there is still a lot of information that can be learned by exploring the dataset using the tidyverse
suite.
About the dataset
The following are the variable (column) descriptions for the dataset:1
Variable | Description |
---|---|
pclass | Passenger Class (1 = 1st; 2 = 2nd; 3 = 3rd) |
survival | Survival (0 = No; 1 = Yes) |
name | Name |
sex | Sex |
age | Age |
sibsp | Number of Siblings/Spouses Aboard |
parch | Number of Parents/Children Aboard |
ticket | Ticket Number |
fare | Passenger Fare (British pound) |
cabin | Cabin |
embarked | Port of Embarkation (C = Cherbourg; Q = Queenstown; S = Southampton) |
boat | Lifeboat |
body | Body Identification Number |
home.dest | Home/Destination |
Also note that the following definitions were used for sibsp
and parch
:
Label | Definition |
---|---|
Sibling | Brother, Sister, Stepbrother, or Stepsister of Passenger Aboard Titanic |
Spouse | Husband or Wife of Passenger Aboard Titanic (Mistresses and Fiances Ignored) |
Parent | Mother or Father of Passenger Aboard Titanic |
Child | Son, Daughter, Stepson, or Stepdaughter of Passenger Aboard Titanic |
Questions
When reading in the dataset using
read_csv(file = "titanic_dataset.csv")
, several of the columns are converted into inconvenient data types. Fix this so that your later analysis does not run into problems. Use thecol_types = cols()
argument withinread_csv()
, see this section of R for Data Science for a review, to change the data type defaults for the following columns:Convert
survived
to the logical data typeConvert
pclass
to the character data typeConvert
sibsp
to the character data typeConvert
parch
to the character data type
Compute how many known passengers were on the Titanic. Do not just print the table, use a function to count the passengers.
A famous directive for evacuating the Titanic was “women and children first”. Use your
dplyr
functions to verify the first part of this statement by counting the number of men and women that survived and that died. Then, using those counts, calculate the fraction of women that survived, \[\dfrac{\text{Number of female survivors}}{\text{Total number of female passengers}}\] and the fraction of men that survived, \[\dfrac{\text{Number of male survivors}}{\text{Total number of male passengers}}\] Do your computations support the idea that women were more likely to survive? Why or why not?Verify the second part of the “women and children first” directive. This will not be as straightforward as it was in the previous question, as the dataset only contains people’s ages, which can take on many values. By default, there are no columns with labels of child or adult, so you will need to create your own.
Create a new column named
child_or_adult
that uses the age data to label each passenger. For our purposes, we want to label anyone aged 0 – 9 as a child and anyone age 10 and up are as adults. If the age cell is blank (NA
) for a passenger, also label them as an “adult”. Assign this updated dataset to the variabletitanic_age_groups
.Hint: You will need to use the
if_else()
function to complete this task. An example usage ofif_else()
is the following:titanic %>% mutate( cheap_or_expensive = if_else( condition = fare < 15, true = "cheap ticket", false = "not cheap", missing = "price unknown" ) )
The input
missing
can be used to handle blank entries. In the above example,NA
will be replaced with the text"price unknown"
.Using the
titanic_age_groups
dataset you created in the previous question, count the number of children that survived and the number that did not. Do your computations support the idea that children were also more likely to survive? Why or why not?A passenger’s age group and sex are not the only predictors of survival. For example, social standing and wealth can play a factor in survival. One of the parameters within this dataset acts as a proxy for distinguishing between the upper and lower classes. Which parameter is it? How do you know?
Group your dataset by
sex
and the variable you determined in question 6 and count the number that survived and the number that did not. Create a bar chart that summarizes the data, wheresurvived
is along the horizontal axis and the passenger counts are along the vertical axis. Use the bar chartfill =
aesthetic to break the bar charts down by your variable from question 6. Additionally, facet over thesex
variable. Interpret this visualization and describe any survival patterns that you notice.Create two visualizations:
The first visualization should be a bar chart displaying the fraction of the passengers that survived for different values of
parch
, \[\dfrac{\text{For a given parch, the number of survivors}}{\text{Total number of passengers}}.\] Doing this requires grouping your data properly, counting the number of passengers in each grouping, and then dividing this by the total number of passengers on the ship.The second visualization should be a bar chart displaying the fraction of the passengers that survived for different values of
sibsp
, \[\dfrac{\text{For a given sibsp, the number of survivors}}{\text{Total number of passengers}}.\] Like above, doing this requires grouping your data properly, counting the number of passengers in each grouping, and then dividing this by the total number of passengers on the ship.
Interpret the patterns that you see in the visualizations.
Based on your analysis, write a list of the factors that affected the chances of survival for each passenger. You should be able to identify 4 different attributes that had a noticeable impact on survival. Justify each attribute that you list by referencing back to a table or visualization you created in a previous question.
How to submit
When you are ready to submit, be sure to save, commit, and push your final result so that everything is synchronized to Github. Then, navigate to your copy of the [Github repository][github-classroom] you used for this assignment. You should see your repository, along with the updated files that you just synchronized to Github. Confirm that your files are up-to-date, and then do the following steps:
Click the Pull Requests tab near the top of the page.
Click the green button that says “New pull request”.
Click the dropdown menu button labeled “base:”, and select the option
grading
.Confirm that the dropdown menu button labeled “compare:” is set to
master
.Click the green button that says “Create pull request”.
Give the pull request the following title: Submission: Homework 2, FirstName LastName, replacing FirstName and LastName with your actual first and last name.
In the messagebox, write: My homework submission is ready for grading @jkglasbrenner.
Click “Create pull request” to lock in your submission.
Cheatsheets
You are encouraged to review and keep the following cheatsheets handy while working on this assignment: