R/print.summary.l2boost.R

Defines functions print.summary.l2boost

Documented in print.summary.l2boost

#' Unimplemented generic function
#' These are placeholders right now.
#' @param x an l2boost object 
#' @param ... other arguments (not used)
#'
#' @importFrom stats printCoefmat
#' 
#' @export
print.summary.l2boost <- function(x, ...){
  stop("Unimplemented function")
  cat("Call:\n")
  print(x$call)
  cat("\n")
  printCoefmat(x$coefficients, P.values=TRUE, has.Pvalue=TRUE)
}
ehrlinger/l2boost documentation built on April 28, 2022, 7:29 a.m.