Description Usage Arguments Details References
The root-mean-square error (RMSE) is a frequently used measure of the differences between values (sample and population values) predicted by a model or an estimator and the values actually observed.
1 | rmse(observados, estimados)
|
observados |
vector of values observed. |
estimados |
vector of regression model data. |
rmse = sqrt(mean((observados - estimados)^2))
See https://en.wikipedia.org/wiki/Root-mean-square_deviation for more details.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.