Nothing
aer <-
function(obs, predict)
{
obs <- as.vector(obs)
predict <- as.vector(predict)
if (length(obs) != length(predict))
stop("incompatible dimensions!")
n <- length(obs)
dif <- function(x, y) mean(x != y)
rate <- dif(obs, predict)
return(rate)
}
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.