View source: R/summary_functions.R
summary.feistest | R Documentation |
The summary method for feistest and bsfeistest objects prints the results of Artificial Regression Tests or Bootstrapped Hausman Tests for FEIS models.
## S3 method for class 'feistest' summary(object, ...) ## S3 method for class 'summary.feistest' print( x, digits = max(3, getOption("digits") - 2), width = getOption("width"), ... ) ## S3 method for class 'bsfeistest' summary(object, ...) ## S3 method for class 'summary.bsfeistest' print( x, digits = max(3, getOption("digits") - 2), width = getOption("width"), ... )
object |
an object of class " |
... |
further arguments. |
x |
an object of class " |
digits |
number of digits for printed output. |
width |
the maximum length of the lines in the printed output. |
An object of class "summary.feistest
" or "summary.bsfeistest
",
equal to the original input object (see feistest
and
bsfeistest
). The object is forwarded to print method.
feistest
, bsfeistest
data("mwp", package = "feisr") feis.mod <- feis(lnw ~ marry | exp, data = mwp, id = "id") ht <- feistest(feis.mod, robust = TRUE, type = "all") summary(ht)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.