R/print_perf_by_cutoff_method.R

Defines functions print.perf_by_cutoff

Documented in print.perf_by_cutoff

#' Print method for class perf_by_cutoff
#'
#' @param x an object of class perf_by_cutoff to be printed
#' @param ... additional arguments to be passed to \code{print}
#'
#' @export

print.perf_by_cutoff <- function(x, ...) {
  hid <- attr(x, "hidden")
  print(x[!names(x) %in% hid], ...)
}
mcbeem/giftedCalcs documentation built on May 3, 2022, 3:34 a.m.