Nothing
AICc <- function(model){
k <- attr(logLik(model), "df")
n <- nobs(model)
aicc <- AIC(model) + 2 * k * (k + 1)/(n - k - 1)
return(aicc)
}
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.