
Last chance! 50% off unlimited learning
Sale ends in
Regression measure defined as
rmse(truth, response, ...)
:: numeric()
True (observed) values.
Must have the same length as response
.
:: numeric()
Predicted response values.
Must have the same length as truth
.
:: any
Additional arguments. Currently ignored.
Performance value as numeric(1)
.
Type: "regr"
Range:
Minimize: TRUE
Required prediction: response
Other Regression Measures:
bias()
,
ktau()
,
mae()
,
mape()
,
maxae()
,
maxse()
,
medae()
,
medse()
,
mse()
,
msle()
,
pbias()
,
rae()
,
rmsle()
,
rrse()
,
rse()
,
rsq()
,
sae()
,
smape()
,
srho()
,
sse()
# NOT RUN {
set.seed(1)
truth = 1:10
response = truth + rnorm(10)
rmse(truth, response)
# }
Run the code above in your browser using DataLab