Nothing
print.bestglm <-
function (x, ...)
{
ti<-x$Title
cat(ti, fill=TRUE)
if ((x$ModelReport$Bestk>0) || (x$ModelReport$IncludeInterceptQ)){
cat("Best Model:", fill=TRUE)
if (any(x$ModelReport$NumDF > 1))
out<-summary(aov(x$BestModel))
else
out<-summary(x$BestModel)$coefficients
print(out)
}
else
cat("Best Model is the null model with no parameters.",fill=TRUE)
}
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.