Skip to content

Commit a3344f9

Browse files
lagvierjnothman
authored andcommitted
EXA Readability of plot_isotonic_regression.py for color blind persons (scikit-learn#14154)
1 parent e6340b5 commit a3344f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/plot_isotonic_regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
fig = plt.figure()
5252
plt.plot(x, y, 'r.', markersize=12)
53-
plt.plot(x, y_, 'g.-', markersize=12)
53+
plt.plot(x, y_, 'b.-', markersize=12)
5454
plt.plot(x, lr.predict(x[:, np.newaxis]), 'b-')
5555
plt.gca().add_collection(lc)
5656
plt.legend(('Data', 'Isotonic Fit', 'Linear Fit'), loc='lower right')

0 commit comments

Comments
 (0)