diff --git a/projects/titanic_survival_exploration/Titanic_Survival_Exploration.ipynb b/projects/titanic_survival_exploration/Titanic_Survival_Exploration.ipynb index a3139c6048..e80f784652 100644 --- a/projects/titanic_survival_exploration/Titanic_Survival_Exploration.ipynb +++ b/projects/titanic_survival_exploration/Titanic_Survival_Exploration.ipynb @@ -290,7 +290,7 @@ "collapsed": true }, "source": [ - "Examining the survival statistics, the majority of males younger then 10 survived the ship sinking, whereas most males age 10 or older *did not survive* the ship sinking. Let's continue to build on our previous prediction: If a passenger was female, then we will predict they survive. If a passenger was male and younger than 10, then we will also predict they survive. Otherwise, we will predict they do not survive. \n", + "Examining the survival statistics, the majority of males younger than 10 survived the ship sinking, whereas most males age 10 or older *did not survive* the ship sinking. Let's continue to build on our previous prediction: If a passenger was female, then we will predict they survive. If a passenger was male and younger than 10, then we will also predict they survive. Otherwise, we will predict they do not survive. \n", "Fill in the missing code below so that the function will make this prediction. \n", "**Hint:** You can start your implementation of this function using the prediction code you wrote earlier from `predictions_1`." ]