R/S3-MeasErrorExt.R

Defines functions print.MeasErrorExt

#' @export
print.MeasErrorExt <- function(x, ...) {
  cat("\nCall:\n", deparse(attributes(x)$call), "\n", sep = "")
  cat(
    "\nThe error-prone variable",
    deparse((attr(x, 'input')$substitute)),
    "will be corrected using the following model:\n"
  )
  print(x$model$coef)
  invisible(x)
}
LindaNab/mecor documentation built on Dec. 15, 2021, 6:59 p.m.