Read the Titanic data set into R. Create a dataframe called “titanic”.
setwd("C:/Users/lenovo/Desktop/se")
titanic<- read.csv("Titanic Data.csv")
View(titanic)
Use R to count the total number of passengers on board the Titanic.
str(titanic)
## 'data.frame': 889 obs. of 8 variables:
## $ Survived: int 0 1 1 1 0 0 0 0 1 1 ...
## $ Pclass : int 3 1 3 1 3 3 1 3 3 2 ...
## $ Sex : Factor w/ 2 levels "female","male": 2 1 1 1 2 2 2 2 1 1 ...
## $ Age : num 22 38 26 35 35 29.7 54 2 27 14 ...
## $ SibSp : int 1 1 0 1 0 0 0 3 0 1 ...
## $ Parch : int 0 0 0 0 0 0 0 1 2 0 ...
## $ Fare : num 7.25 71.28 7.92 53.1 8.05 ...
## $ Embarked: Factor w/ 3 levels "C","Q","S": 3 1 3 3 3 2 3 3 3 1 ...
Hence the dataset contains records for 889 passengers.
Use R to count the number of passengers who survived the sinking of the Titanic
titanic.survived <- table(titanic$Survived)
titanic.survived
##
## 0 1
## 549 340
This shows us that 340 people of the 889 people listed, survived. ## Task 3c Use R to measure the percentage of passengers who survived the sinking of the Titanic.
prop.table(titanic.survived) *100
##
## 0 1
## 61.75478 38.24522
This shows us that approximately 38.245% of the 889 listed passengers listed, survived the Titanic.
Use R to count the number of first-class passengers who survived the sinking of the Titanic.
titanic.survived2 <- xtabs(~Survived+Pclass, data=titanic)
addmargins(titanic.survived2)
## Pclass
## Survived 1 2 3 Sum
## 0 80 97 372 549
## 1 134 87 119 340
## Sum 214 184 491 889
Use R to measure the percentage of first-class passengers who survived the sinking of the Titanic.
prop.table(titanic.survived2, 2) *100
## Pclass
## Survived 1 2 3
## 0 37.38318 52.71739 75.76375
## 1 62.61682 47.28261 24.23625
Use R to count the number of females from First-Class who survived the sinking of the Titanic
titanic.survived3 <- xtabs(~Survived+Pclass+Sex, data=titanic)
titanic.survived3
## , , Sex = female
##
## Pclass
## Survived 1 2 3
## 0 3 6 72
## 1 89 70 72
##
## , , Sex = male
##
## Pclass
## Survived 1 2 3
## 0 77 91 300
## 1 45 17 47
Use R to measure the percentage of survivors who were female
titanic.survived4 <- xtabs(~Survived+Sex, data = titanic)
prop.table(titanic.survived4,1) *100
## Sex
## Survived female male
## 0 14.75410 85.24590
## 1 67.94118 32.05882
Use R to measure the percentage of females on board the Titanic who survived
prop.table(titanic.survived4,2) *100
## Sex
## Survived female male
## 0 25.96154 81.10919
## 1 74.03846 18.89081
Run a Pearson’s Chi-squared test to test the following hypothesis:
Hypothesis: The proportion of females onboard who survived the sinking of the Titanic was higher than the proportion of males onboard who survived the sinking of the Titanic.
chisq.test(titanic.survived4)
##
## Pearson's Chi-squared test with Yates' continuity correction
##
## data: titanic.survived4
## X-squared = 258.43, df = 1, p-value < 2.2e-16
The p-value being less than 1 in 22 Quadrillion, it is safe to reject the null hypothesis that the survival rates for men and women were equal.