bsfeistest | R Documentation |
Estimates a bootstrapped Hausman test for fixed effects individual slope models.
bsfeistest( model = NA, type = c("all", "bs1", "bs2", "bs3"), terms = NULL, rep = 500, seed = NULL, prog = TRUE, ... )
model |
an object of class " |
type |
one of " |
terms |
An optional character vector specifying which coefficients should be jointly tested.
By default, all covariates are included in the Wchi-squared test. For " |
rep |
the number of repetitions to be used in bootstrapping (default is 500). |
seed |
the seed used for random sampling in bootstrapping. Needs to be a valid integer. If not specified, the current seed is used. |
prog |
... logical. If |
... |
further arguments. |
The function computes a bootstrapped version of the Hausman test \insertCiteHausman.1978.0feisr. Pairs cluster bootstrapping \insertCiteCameron.2008,Ruttenauer.2020feisr is used to obtain the empirical variance-covariance matrix of the estimators, either for FEIS and conventional FE, convention FE and RE, or FEIS and RE.
type="bs1"
estimates a bootstrapped Hausman test comparing fixed effects individual slope
models and conventional fixed effects models. In this case, bsfeistest
tests for
inconsistency of the convetional FE model due to heterogeneous slopes.
type="bs2"
estimates a bootstrapped version of the well-known Hausman test comparing conventional
fixed effects models against random effects models.
type="bs3"
estimates a bootstrapped Hausman directly comparing FEIS against RE, thereby testing
for inconsistency of the RE model due to either heterogeneous slopes or time-constant omitted heterogeneity.
Bootstrapping is perfomed by resampling with replacement while keeping the number of groups identical to
the number of groups in the original dataset. A wald test from aod package is used to perform a Wald
chi-squared test on the differences between coefficients.
An object of class "feistest
", containing the following elements:
wald_feis |
an object of class " |
wald_fe |
an object of class " |
wald_re |
an object of class " |
vcov1 |
the empirical (bootstrapped) variance-covariance matrix of the
coefficients obtained from FEIS and FE ( |
vcov2 |
the empirical (bootstrapped) variance-covariance matrix of the
coefficients obtained from FE and RE ( |
vcov3 |
the empirical (bootstrapped) variance-covariance matrix of the
coefficients obtained from FEIS and RE ( |
bscoef.feis |
a matrix containing the estimated FEIS coefficients of each bootstrap run. |
bscoef.fe |
a matrix containing the estimated FE coefficients of each bootstrap run. |
bscoef.re |
a matrix containing the estimated RE coefficients of each bootstrap run. |
call |
the matched call. |
formula |
an object of class " |
type |
the type of performed test(s). |
sample |
a list containing the IDs sampled in each run. |
seed |
the seed used for bootstrapping. |
terms |
character vector of covariates are included in the Wchi-squared test. |
summary.feistest
, feistest
,
feis
, plm
,
phtest
data("mwp", package = "feisr") ## Not run: feis.mod <- feis(lnw ~ marry + enrol | year, data = mwp, id = "id", robust = TRUE) bsht <- bsfeistest(feis.mod, type = "bs1", rep = 100, seed = 1234) summary(bsht) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.