Root Relative Squared Error
Regression measure defined as
sqrt(sum((t - r)^2) / sum((t - mean(t))^2)).
Can be interpreted as root of the squared error of the predictions relative to a naive model predicting the mean.
rrse(truth, response, na_value = NaN, ...)
truth |
( |
response |
( |
na_value |
( |
... |
( |
Performance value as numeric(1)
.
Type: "regr"
Range: [0, Inf)
Minimize: TRUE
Required prediction: response
This measure is undefined for constant t.
set.seed(1) truth = 1:10 response = truth + rnorm(10) rrse(truth, response)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.