R/utils.R

Defines functions bcaboot.return

bcaboot.return <- function(x) {
    class(x) <- "bcaboot"
    x
}

#' @export
print.bcaboot <- function (x, digits = getOption("digits"), ...) {
    result <- x
    result$seed <- NULL
    print.default(result)
    invisible(x)
}

Try the bcaboot package in your browser

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

bcaboot documentation built on May 9, 2021, 9:07 a.m.