R/surcharge_affichage_predict.R

Defines functions summary.predict print.predict

Documented in print.predict summary.predict

#' Customization function of the print method for the predict instance
#'
#' @param x predict instance returned by dgrglm.predict function
#' @param ... other argument
#'
#' @export
#'
print.predict <- function(x, ...){
  cat("")
}

#' Customization function of the summary method for the predict instance
#'
#' @param object predict instance returned by dgrglm.predict function
#' @param ... other argument
#'
#' @export
#'
summary.predict <- function(object, ...){
  cat("")
}
Beuleup93/dgrGlm documentation built on Dec. 17, 2021, 10:50 a.m.