powered by
Compute the R-Squared (Coefficient of Determination) Regression Score.
R2_Score(y_pred, y_true)
R^2 Score
Estimated target values vector
Ground truth (correct) target values vector
data(cars) reg <- lm(log(dist) ~ log(speed), data = cars) R2_Score(y_pred = exp(reg$fitted.values), y_true = cars$dist)
Run the code above in your browser using DataLab