R/print.ibr.R

Defines functions print.ibr

Documented in print.ibr

print.ibr <- function(x, digits = max(2, getOption("digits") - 4), ...) {
  cat("\nInitial df:", format(round(x$initialdf,digits)), "; Final df:", format(round(x$finaldf,digits)), "\n")
 if (x$parcall$critmethod=="aggregation") crit4iter <- paste("aggregation of",x$parcall$criterion) else crit4iter <- x$parcall$criterion[1]
  cat("Number of iterations:", x$iter, "chosen by", crit4iter, "\n")
}

Try the ibr package in your browser

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

ibr documentation built on Sept. 13, 2023, 5:08 p.m.