8000 EXA Adjust the location of a comment (#18325) · NicolasHug/scikit-learn@74590c8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 74590c8

Browse files
authored
EXA Adjust the location of a comment (scikit-learn#18325)
Adjusting the location of the comment so it corresponds to the correct code snippet.
1 parent ffb4fea commit 74590c8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/linear_model/plot_iris_logistic.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@
2828
X = iris.data[:, :2] # we only take the first two features.
2929
Y = iris.target
3030

31-
logreg = LogisticRegression(C=1e5)
32-
3331
# Create an instance of Logistic Regression Classifier and fit the data.
32+
logreg = LogisticRegression(C=1e5)
3433
logreg.fit(X, Y)
3534

3635
# Plot the decision boundary. For that, we will assign a color to each

0 commit comments

Comments
 (0)
0