R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
    if (suppressWarnings(requireNamespace("texreg", quietly=TRUE))) {
        setGeneric("extract", function(model, ...) standardGeneric("extract"),
                   package = "texreg")
        setMethod("extract",
                  signature = className("robustified", pkgname),
                  definition = extract.robustified)
        setMethod("extract",
                  signature = className("mi.estimates", pkgname),
                  definition = extract.mi.estimates)
    }
    invisible()
}

Try the bucky package in your browser

Any scripts or data that you put into this service are public.

bucky documentation built on March 26, 2022, 1:12 a.m.