sklearn plot regression y y_predict code example
Example 1: scatter plot actual vs predicted python
plot.scatter(xTrain, yTrain, color = 'red')plot.plot(xTrain, linearRegressor.predict(xTrain), color = 'blue')plot.title('Salary vs Experience (Training set)')plot.xlabel('Years of Experience')plot.ylabel('Salary')plot.show()
Example 2: scatter plot actual vs predicted python
linearRegressor.fit(xTrain, yTrain)