R/print.epmrob.R

Defines functions print.epmrob

Documented in print.epmrob

print.epmrob <-
function(x, digits = 4, ...)
{
  cat("Call: \n")
  print(x$call)
  cat(" \n")
  cat("Coefficients (reduced form equation): \n")
  print(x$stage1$coeff, digits = 4)
  cat("Coefficients (outcome equation): \n")
  print(x$stage2$coeff, digits = 4)
}

Try the epmrob package in your browser

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

epmrob documentation built on July 9, 2023, 6:19 p.m.