R/print.predictiveness_measure.R

Defines functions print.predictiveness_measure

Documented in print.predictiveness_measure

#' Print \code{predictiveness_measure} objects
#'
#' Prints out a table of the point estimate and standard error for a \code{predictiveness_measure} object.
#'
#' @param x the \code{predictiveness_measure} object of interest.
#' @param ... other options, see the generic \code{print} function.
#' @export
print.predictiveness_measure <- function(x, ...) {
  print(format(x, ...), quote = FALSE)
  invisible(x)
}

Try the vimp package in your browser

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

vimp documentation built on Aug. 29, 2023, 1:06 a.m.