Nothing
AICc <- function(object)
{
aic <- AIC(object)
if (!is.numeric(aic)) stop("Cannot calculate AIC!")
k <- length(coef(object))
n <- length(residuals(object))
aic + ((2 * k * (k + 1))/(n - k - 1))
}
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.