nRMSE {ldsr} | R Documentation |
RMSE is normalized by the normalization constant
nRMSE(yhat, y, normConst)
yhat |
Model outputs |
y |
Observations |
normConst |
The normalization constant |
normalized RMSE
x <- rnorm(100)
y <- rnorm(100)
nRMSE(x, y, sd(y))