Learn R Programming

feisr (version 1.3.0)

summary.feistest: 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 feistest
summary(object, ...)

# S3 method for summary.feistest print( x, digits = max(3, getOption("digits") - 2), width = getOption("width"), ... )

# S3 method for bsfeistest summary(object, ...)

# S3 method for summary.bsfeistest print( x, digits = max(3, getOption("digits") - 2), width = getOption("width"), ... )

Arguments

object

an object of class "feistest" or "bsfeistest".

...

further arguments.

x

an object of class "summary.feistest" or "summary.bsfeistest".

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

feistest, bsfeistest

Examples

Run this code
# NOT RUN {
data("mwp", package = "feisr")
feis.mod <- feis(lnw ~ marry | exp,
                 data = mwp, id = "id")
ht <- feistest(feis.mod, robust = TRUE, type = "all")
summary(ht)

# }

Run the code above in your browser using DataLab