R/print.lmridge.R

Defines functions print.lmridge

Documented in print.lmridge

print.lmridge <- function(x, digits = max(5, getOption("digits") - 5),...) {
  cat("Call:\n", paste(deparse(x$call), sep = "\n", collapse = "\n"), "\n\n", sep =
        "")
  print(round(coef(x),  digits), ...)
  cat("\n")
  invisible(x)

}

Try the lmridge package in your browser

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

lmridge documentation built on Jan. 15, 2023, 5:06 p.m.