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