View source: R/caclulate_error.R
rmse | R Documentation |
Function that calculates Root Mean Square Error (RMSE)
rmse(actual, predicted)
actual |
observed values |
predicted |
predicted values |
Details go here
actual <- c(4, 6, 9, 10, 4, 6, 4, 7, 8, 7)
predicted <- c(5, 6, 8, 10, 4, 8, 4, 9, 8, 9)
rmse(actual, predicted)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.