## print function for ridgeLogistic objects
#' @rdname print
#' @export
#' @importFrom stats coef
print.ridgeLogistic <- 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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.