Exersice prctice from In 12 minutes: Stocks Analysis with Pandas and Scikit-Learn
Four different models result for predicting the stock in StocksPriceModel.py
Uncomment each result to show deffernt plot result
# Linear Regresseion result
#forecast_set = clfreg.predict(X_lately)
# Quadratic Regression 2 result
#forecast_set = clfpoly2.predict(X_lately)
# Quadratic Regression 3 result
#forecast_set = clfpoly3.predict(X_lately)
# KNN Regression result
forecast_set = clfknn.predict(X_lately)