R/print.ridgeLinear.R

Defines functions print.ridgeLinear

Documented in print.ridgeLinear

## print function for ridgeLinear objects

#' @rdname print
#' @export
#' @importFrom stats coef
print.ridgeLinear <- function(x, all.coef = FALSE, ...)
  {
    cat("\nCall:\n", paste(deparse(x$call), sep = "\n", collapse = "\n"), 
        "\n\n", sep = "")
    print(coef(x, all.coef = all.coef), ...)
    cat("\n")
    invisible(x)
  }

Try the ridge package in your browser

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

ridge documentation built on April 11, 2022, 5:05 p.m.