Description Usage Arguments Details Value Examples
Calculates the root mean square error (RMSE) from observed and predicted values.
1 | rmse(observed, predicted)
|
observed |
Numeric vector of observed values |
predicted |
Numeric vector of predicted values. The length shall be the same as for observed. |
rmse = sqrt(mean((observed - predicted)^2))
The root mean square err or (RMSE) calculated from the observed and the predicted values.
1 2 3 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.