Nothing
# Currently (in at least rev. 195), plm() and summary() can deal with linear dependent
# columns (by silently dropping them), but vcovG framework had a hiccup pre rev. 302
# see the example below
library(plm)
data("Cigar", package = "plm")
Cigar.p <- pdata.frame(Cigar)
Cigar.p[ , "fact1"] <- c(0,1)
Cigar.p[ , "fact2"] <- c(1,0)
# linear dependent columns are silently dropped in these functions, thus they work
mod_fe_lin_dep <- plm(price ~ cpi + fact1 + fact2, data = Cigar.p, model = "within") # contains lin dep columns
mod_fe_no_lin_dep <- plm(price ~ cpi + fact1, data = Cigar.p, model = "within") # does not contain lin dep columns
summary(mod_fe_lin_dep) # works with linear dep columns
summary(mod_fe_no_lin_dep)
# detect linear dependence
detect_lin_dep(model.matrix(mod_fe_lin_dep))
detect_lin_dep(model.matrix(mod_fe_no_lin_dep))
mod_fe_lin_dep$aliased
mod_fe_no_lin_dep$aliased
# failed in vcovG up to rev. 301;
# fixed in rev. 302 by taking care of aliased coefficients
# the linear dependent column is not dropped leading to failing function due
# to the non-invertible matrix
vcovHC(mod_fe_lin_dep)
vcovHC(mod_fe_no_lin_dep)
if (!identical(vcovHC(mod_fe_lin_dep), vcovHC(mod_fe_no_lin_dep))) {
stop("vcov w/ linear dependent columns and the corresponding one w/o are not identical")
}
## test for vcovBK because code is separate from the vcovG framework
vcovBK(mod_fe_lin_dep)
vcovBK(mod_fe_no_lin_dep)
if (!identical(vcovBK(mod_fe_lin_dep), vcovBK(mod_fe_no_lin_dep))) {
stop("vcov w/ linear dependent columns and the corresponding one w/o are not identical")
}
## test for IV models with linear dependent columns
data("Crime", package = "plm")
cr <- plm(log(crmrte) ~ log(prbarr) + log(polpc) + log(prbconv) + I(2*log(prbconv))
| log(prbarr) + log(polpc) +
log(taxpc) + log(mix), data = Crime,
model = "pooling")
head(model.matrix(cr$formula, cr$model, rhs = 1))
head(model.matrix(cr$formula, cr$model, rhs = 2))
detect_lin_dep(cr)
vcovHC(cr)
vcovBK(cr)
## linear dependence in instrument part
cr2 <- plm(log(crmrte) ~ log(prbarr) + log(polpc) + log(prbconv)
| log(prbarr) + log(polpc) +
log(taxpc) + log(mix) + I(2*log(mix)), data = Crime,
model = "pooling")
detect_lin_dep(cr2) # does not inspect instrument matrix
head(model.matrix(cr2$formula, cr2$model, rhs = 2))
detect_lin_dep(model.matrix(cr2$formula, cr2$model, rhs = 2))
vcovHC(cr2)
vcovBK(cr2)
# just run test for for pgmm models (as vcovXX.pgmm methods use vcovXX.plm)
# (no linear dependence involved here)
data("EmplUK", package="plm")
ar <- pgmm(dynformula(log(emp) ~ log(wage) + log(capital) + log(output),
list(2, 1, 2, 2)), data = EmplUK, effect = "twoways",
model = "twosteps", gmm.inst = ~ log(emp),
lag.gmm = list(c(2, 99)))
vcovHC(ar)
plm:::vcovHC.pgmm(ar)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.