R/print_break_down_descriptions.R

Defines functions print.break_down_description

Documented in print.break_down_description

#' Print Generic for Break Down Objects
#'
#' @param x a description of \code{break_down_description} class.
#' @param ... other parameters.
#'
#' @references Explanatory Model Analysis. Explore, Explain and Examine Predictive Models. \url{https://ema.drwhy.ai}
#'
#' @return a character
#'
#' @export

print.break_down_description <- function(x, ...) {
  for (element in x) {
    cat(element, "\n")
  }

  return(invisible(NULL))
}

Try the iBreakDown package in your browser

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

iBreakDown documentation built on May 7, 2021, 5:07 p.m.