Baselight

Preprocessing-1 Of Titanic Dataset

New features such as FamilySize, IsAlone, CabinFloor, CabinNumber. +Mapping

@kaggle.spektrum_preprocessing1_of_titanic_dataset

Preproc2 Train
@kaggle.spektrum_preprocessing1_of_titanic_dataset.preproc2_train

  • 17.81 KB
  • 891 rows
  • 14 columns
passengerid

PassengerId

survived

Survived

pclass

Pclass

sex

Sex

age

Age

sibsp

SibSp

parch

Parch

fare

Fare

embarked

Embarked

cabinfloor

CabinFloor

cabinnumber

CabinNumber

familysize

FamilySize

isalone

IsAlone

title

Title

131411121
21161423221
313511111
41151413221
531521111
63123111
71164151111
8311313152
913522131
1012313221

CREATE TABLE preproc2_train (
  "passengerid" BIGINT,
  "survived" BIGINT,
  "pclass" BIGINT,
  "sex" BIGINT,
  "age" BIGINT,
  "sibsp" BIGINT,
  "parch" BIGINT,
  "fare" BIGINT,
  "embarked" BIGINT,
  "cabinfloor" BIGINT,
  "cabinnumber" BIGINT,
  "familysize" BIGINT,
  "isalone" BIGINT,
  "title" BIGINT
);

Share link

Anyone who has the link will be able to view this.