summary.feistest {feisr} | R Documentation |
Summary for feistest and bsfeistest objects
Description
The summary method for feistest and bsfeistest objects prints the results of Artificial Regression Tests or Bootstrapped Hausman Tests for FEIS models.
Usage
## 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"),
...
)
Arguments
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. |
Value
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.
See Also
Examples
data("mwp", package = "feisr")
feis.mod <- feis(lnw ~ marry | exp,
data = mwp, id = "id")
ht <- feistest(feis.mod, robust = TRUE, type = "all")
summary(ht)
[Package feisr version 1.3.0 Index]