R/print.errprof.R

Defines functions print.errprof

Documented in print.errprof

#' Print method for errprof
#'
#' Print method for errprof class
#'
#' @param x input errprof object
#' @param ... arguments passed to or from other methods
#'
#' @export
#'
#' @return list output for the errprof object
#'
#' @method print errprof
print.errprof <- function(x, ...){

  nms <- names(x)
  attributes(x) <- NULL
  names(x) <- nms
  print(x)

}
fawda123/imputeTestbench documentation built on Jan. 26, 2021, 5:18 p.m.