oldoc63 / learningDS

Learning DS with Codecademy and Books
0 stars 0 forks source link

Titanic #401

Open oldoc63 opened 1 year ago

oldoc63 commented 1 year ago

The titanic dataset contains information about passengers on the Titanic, including the amount they paid for their fare and whether or not they survived (this is a subset of the full data available). Let's investigate whether there is an association between the fare that a passenger paid (Fare) and whether or not they survived (Survived, which is equal to 0 is the passenger died and 1 if they survived):

oldoc63 commented 1 year ago

Separate out fares by survival and calculate the difference in mean fare paid for those who survived and those who died.

oldoc63 commented 1 year ago

Calculate the difference in median fare for those who survived and those who died.

oldoc63 commented 1 year ago