R/print.rbounds.R

Defines functions summary.rbounds print.rbounds

Documented in print.rbounds summary.rbounds

print.rbounds <- function(x, ...) {
  cat("\n", x$msg, "\n")
  cat("Unconfounded estimate .... ", round(x[["pval"]], 4), "\n\n")
  print(x$bounds, row.names = FALSE)
  cat("\n", x$note, "\n")
}

summary.rbounds <- function(object, ...) {
  print.rbounds(object, ...)
}

Try the rbounds package in your browser

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

rbounds documentation built on April 30, 2022, 1:07 a.m.