MLmetrics (version 1.1.1)

RMSE: Root Mean Square Error Loss

Description

Compute the root mean squared error regression loss.

Usage

RMSE(y_pred, y_true)

Value

Root Mean Square Error Loss

Arguments

y_pred

Estimated target values vector

y_true

Ground truth (correct) target values vector

Examples

Run this code
data(cars)
reg <- lm(log(dist) ~ log(speed), data = cars)
RMSE(y_pred = exp(reg$fitted.values), y_true = cars$dist)

Run the code above in your browser using DataCamp Workspace