Nothing
## Root mean squared error
rmse <- function (actual,estimated) {
e <- actual - estimated
sqrt(mean(e^2))
}
## Average absolute error
aabse <-function (actual,estimated){
e <- actual - estimated
mean(abs(e))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.