Python Idle
The maritime research team is impressed with your initial exploration. Now they want to go deeper. A modeling team is preparing to predict survival, but raw columns alone won't cut it. They need derived features: Was the passenger traveling alone? How big was their family? What age group did they fall into? Your job is to engineer these new columns from existing data. This is where domain knowledge meets code.
~20 minscenario891 rows
Loading Python runtime...
Goals: 5 tests
should create a FamilySize column
FamilySize should equal SibSp + Parch + 1
should create an IsAlone column
should create an AgeGroup column
Python loading...