Nothing
logLik.metaplus <- function(object, ...)
{
logLik(object$fittedmodel)
}
BIC.metaplus <-
function (object, ...)
{
if (!is.element("metaplus", class(object)))
stop("Argument 'object' must be an object of class \"metaplus\".")
BIC(object$fittedmodel)
}
AIC.metaplus <-
function(object,...) {
if (!inherits(object, "metaplus"))
stop("Use only with 'metaplus' objects.\n")
AIC(object$fittedmodel)
}
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.