Nothing
summary.ADcens <- function(object, outp = c("list", "table"),
print.AIC = TRUE, print.BIC = TRUE,
print.infoBoot = FALSE, ...) {
if (!inherits(object, "ADcens")) {
stop("Use only 'ADcens' objects")
}
outp <- match.arg(outp)
if (!outp %in% c("list", "table")) {
stop("Invalid value of outp. Use 'table' or 'list'.")
}
object$outp <- outp
object$print.AIC <- print.AIC
object$print.BIC <- print.BIC
object$print.infoBoot <- print.infoBoot
class(object) <- c("summary.ADcens", class(object))
object
}
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.