R/print.lewbel.model.R

Defines functions print.lewbel.model

Documented in print.lewbel.model

print.lewbel.model <-
function(x, ...){
  cat("Call:\n")
  print(x$call)
  cat("\nCoefficients and Standard Errors:\n")
  printCoefmat(x$coef.est, P.values=T, has.Pvalue=T)
  cat("\nOveridentification Test:\n")
  print(x$j.test)
  cat("\nPartial F-test Statistics for Weak IV Detection:\n")
  print(x$f.test.stats)
  cat("\nNumber of Observations:", x$num.obs, "\n")
}

Try the ivlewbel package in your browser

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

ivlewbel documentation built on May 30, 2017, 5:37 a.m.