add plt.show() for day2

add plt.show() for day2
This commit is contained in:
Jack Huang
2018-08-21 11:49:17 +08:00
committed by GitHub
parent 8e927e9db4
commit 273b221d67

View File

@ -25,4 +25,4 @@ plt.plot(X_train , regressor.predict(X_train), color ='blue')
# Visualizing the test results
plt.scatter(X_test , Y_test, color = 'red')
plt.plot(X_test , regressor.predict(X_test), color ='blue')
plt.show()