Nothing
#'@export
print.gllvm <- function(x, ...) {
cat("Call: \n")
print(x$call)
cat("family: \n")
print(x$family)
cat("method: \n")
print(x$method)
cat("\n")
cat("log-likelihood: ", x$logL, "\n")
if(!is.null(x$params$inv.phi)){ x$params$inv.phi <- NULL; }
crit <- inf.criteria(x)
df <- crit$k
cat("Residual degrees of freedom: ", length(x$y) - df, "\n")
cat("AIC: ", crit$AIC, "\n")
cat("AICc: ", crit$AICc, "\n")
cat("BIC: ", crit$BIC, "\n")
invisible(crit)
}
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.