The root of the Mean Squared Error between the exact value and the predicted one.
Usage
RMSE(Y, Ypred)
Arguments
Y
a real vector with the values of the output
Ypred
a real vector with the predicted values
Value
a real which represents the root of the mean squared error between the target response \(Y\)
and the fitted one \(\hat{Y}\):
$$\code{RMSE} = \sqrt{\frac{1}{n} \sum_{i=1}^{n} \left( Y \left( x_{i}\right)-\hat{Y}
\left( x_{i}\right)\right)^2}.$$