Skip to content

Commit e70a1bc

Browse files
authoredFeb 21, 2017
ERRATUM: change "feature" to "target array"
Change designation of the "Species" array from 'feature' to 'target a…
2 parents 0b1f3d0 + c649385 commit e70a1bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎notebooks/05.02-Introducing-Scikit-Learn.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
"While some Scikit-Learn estimators do handle multiple target values in the form of a two-dimensional, ``[n_samples, n_targets]`` target array, we will primarily be working with the common case of a one-dimensional target array.\n",
189189
"\n",
190190
"Often one point of confusion is how the target array differs from the other features columns. The distinguishing feature of the target array is that it is usually the quantity we want to *predict from the data*: in statistical terms, it is the dependent variable.\n",
191-
"For example, in the preceding data we may wish to construct a model that can predict the species of flower based on the other measurements; in this case, the ``species`` column would be considered the feature.\n",
191+
"For example, in the preceding data we may wish to construct a model that can predict the species of flower based on the other measurements; in this case, the ``species`` column would be considered the target array.\n",
192192
"\n",
193193
"With this target array in mind, we can use Seaborn (see [Visualization With Seaborn](04.14-Visualization-With-Seaborn.ipynb)) to conveniently visualize the data:"
194194
]

0 commit comments

Comments
 (0)
Please sign in to comment.