R2_Score {MLmetrics} | R Documentation |
R-Squared (Coefficient of Determination) Regression Score
Description
Compute the R-Squared (Coefficient of Determination) Regression Score.
Usage
R2_Score(y_pred, y_true)
Arguments
y_pred |
Estimated target values vector |
y_true |
Ground truth (correct) target values vector |
Value
R^2 Score
Examples
data(cars)
reg <- lm(log(dist) ~ log(speed), data = cars)
R2_Score(y_pred = exp(reg$fitted.values), y_true = cars$dist)
[Package MLmetrics version 1.1.3 Index]