Merge pull request #46 from Huang-Jack/patch-1

add plt.show() for day2
This commit is contained in:
Yong Mao
2018-08-21 12:29:28 +08:00
committed by GitHub

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()