Nothing
"print.radline" <-
function (x, ...)
{
cat("\nRAD model:", x$model, "\n")
cat("Family:", family(x)$family, "\n")
cat("No. of species: ", length(x$y), "\nTotal abundance:",
sum(x$y), "\n\n")
p <- coef(x)
dev <- deviance(x)
AIC <- AIC(x)
BIC <- AIC(x, k = log(length(x$y)))
tmp <- c(p, dev, AIC, BIC)
names(tmp) <- c(names(p), "Deviance", "AIC", "BIC")
print(tmp, ...)
invisible(x)
}
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.