22 lines
599 B
Markdown
22 lines
599 B
Markdown
## Titatnic Challenge
|
|
|
|
Predict whether Titanic passengers survived based on their data
|
|
|
|
In.tsv data features:
|
|
|
|
PassengerId - id of given passenger
|
|
Pclass - Ticket class 1 = 1st, 2 = 2nd, 3 = 3rd
|
|
Name - passenger name
|
|
Sex - passenger sex (male/female)
|
|
Age - passenger age
|
|
SibSp - # of siblings / spouses aboard the Titanic
|
|
Parch - # of parents / children aboard the Titanic
|
|
Ticket - ticket number
|
|
Fare - passenger fare
|
|
Cabin - cabin number
|
|
Embarked - port of embarkation C = Cherbourg, Q = Queenstown, S = Southampton
|
|
|
|
|
|
Out.tsv data features:
|
|
survival - whether passenger survived (1 = yes, 0 = no)
|