Nothing
AIC <- function(fit)UseMethod("AIC")
## computes the AIC of the model for the data in a VLMCX object using the count.param() and LogLik.VLMCX() functions
AIC.VLMCX <- function(fit)
{
k = count.param(fit$tree)
result = -2*LogLik.VLMCX(fit) + 2*k
return(result)
}
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.