Skip to content

Commit 2816ef4

Browse files
authored
Typo: "make" -> "makes"
Fix a few typos
2 parents a19759a + acc0963 commit 2816ef4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

notebooks/05.06-Linear-Regression.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
"where there are multiple $x$ values.\n",
175175
"Geometrically, this is akin to fitting a plane to points in three dimensions, or fitting a hyper-plane to points in higher dimensions.\n",
176176
"\n",
177-
"The multidimensional nature of such regressions make them more difficult to visualize, but we can see one of these fits in action by building some example data, using NumPy's matrix multiplication operator:"
177+
"The multidimensional nature of such regressions makes them more difficult to visualize, but we can see one of these fits in action by building some example data, using NumPy's matrix multiplication operator:"
178178
]
179179
},
180180
{
@@ -225,7 +225,7 @@
225225
"$$\n",
226226
"y = a_0 + a_1 x_1 + a_2 x_2 + a_3 x_3 + \\cdots\n",
227227
"$$\n",
228-
"and build the $x_1, x_2, x_3,$ and so on. from our single-dimensional input $x$.\n",
228+
"and build the $x_1, x_2, x_3,$ and so on, from our single-dimensional input $x$.\n",
229229
"That is, we let $x_n = f_n(x)$, where $f_n()$ is some function that transforms our data.\n",
230230
"\n",
231231
"For example, if $f_n(x) = x^n$, our model becomes a polynomial regression:\n",

0 commit comments

Comments
 (0)