“Streudiagramm tatsächliche vs vorhergesagte Python” Code-Antworten

Streudiagramm tatsächliche vs vorhergesagte 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()
Confused Cardinal

Streudiagramm tatsächliche vs vorhergesagte Python

plot.scatter(xTest, yTest, color = 'red')plot.plot(xTrain, linearRegressor.predict(xTrain), color = 'blue')plot.title('Salary vs Experience (Test set)')plot.xlabel('Years of Experience')plot.ylabel('Salary')plot.show()
Confused Cardinal

Streudiagramm tatsächliche vs vorhergesagte Python

linearRegressor.fit(xTrain, yTrain)
Confused Cardinal

Ähnliche Antworten wie “Streudiagramm tatsächliche vs vorhergesagte Python”

Fragen ähnlich wie “Streudiagramm tatsächliche vs vorhergesagte Python”

Weitere verwandte Antworten zu “Streudiagramm tatsächliche vs vorhergesagte Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen