Skip to content

Commit 320507a

Browse files
committed
Correct typos
1 parent c3ce770 commit 320507a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

content/titanic/CaseStudy_Titanic-Solution.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"#### Objective\n",
4646
"In this challenge, we will complete the analysis of what sorts of people were likely to survive. \n",
4747
"\n",
48-
"In addition, we will build a regression model to predict ticket price(Fare).\n",
48+
"In addition, we will build a regression model to predict ticket price (Fare).\n",
4949
"\n"
5050
]
5151
},
@@ -1727,7 +1727,7 @@
17271727
"### Feature Engineering\n",
17281728
"We'll create a new column FamilySize. There are 2 columns related to family size, parch indicates parent or children number, Sibsp indicates sibling and spouse number.\n",
17291729
"\n",
1730-
"Take one name 'Asplund' as example, we can see that total family size is 7(Parch + SibSp + 1), and each family member has same Fare, which means the Fare is for the whole group. So family size will be an important feature to predict Fare. There're only 4 Asplunds out of 7 in the dataset becasue the dataset is only a subset of all passengers."
1730+
"Take one name 'Asplund' as example, we can see that total family size is 7(Parch + SibSp + 1), and each family member has same Fare, which means the Fare is for the whole group. So family size will be an important feature to predict Fare. There're only 4 Asplunds out of 7 in the dataset because the dataset is only a subset of all passengers."
17311731
]
17321732
},
17331733
{
@@ -2054,7 +2054,7 @@
20542054
"\n",
20552055
"## Step 4: Modeling\n",
20562056
"\n",
2057-
"Now we have a relatively clean dataset(Except for Cabin column which has many missing values). We can do a classification on Survived to predict whether a passenger could survive the desaster or a regression on Fare to predict ticket fare. This dataset is not a good dataset for regression. But since we don't talk about classification in this workshop we will construct a linear regression on Fare in this exercise."
2057+
"Now we have a relatively clean dataset (except for the Cabin column which has many missing values). We can do a classification on Survived to predict whether a passenger could survive the desaster or a regression on Fare to predict ticket fare. This dataset is not a good dataset for regression. But since we don't talk about classification in this workshop we will construct a linear regression on Fare in this exercise."
20582058
]
20592059
},
20602060
{

0 commit comments

Comments
 (0)