tests/vcovPL.R

library("sandwich")
data("PetersenCL", package = "sandwich")
m <- lm(y ~ x, data = PetersenCL)

vcovPL(m, cluster = ~ firm + year, adjust = TRUE)
vcovPL(m, cluster = ~ firm + year, adjust = FALSE)


data("InstInnovation", package = "sandwich")
n <- glm(cites ~ institutions, family = poisson, data = InstInnovation)

vcovPL(n, cluster = ~ industry, adjust = TRUE)
vcovPL(n, cluster = ~ industry, adjust = FALSE)


## vcovPL covariance matrix compared with vcovSCC from plm package
if(!require("plm")) q()
pm <- plm::plm(y ~ x, data = PetersenCL, model = "pooling", index = c("firm", "year"))

(pl1 <- vcovPL(m, cluster = ~ firm, adjust = FALSE))
(pl2 <- plm::vcovSCC(pm))
attr(pl2, "cluster") <- NULL

all.equal(pl1, pl2)


## vcovPL compared with Stata's xtscc (xtscc y x, lag(1) ase) standard errors
pl4 <- c(0.0243573, 0.0281633)
names(pl4) <- c("(Intercept)", "x")
pl4
(pl3 <- sqrt(diag(pl1)))

all.equal(pl3, pl4, tolerance = 1e-6)

Try the sandwich package in your browser

Any scripts or data that you put into this service are public.

sandwich documentation built on Sept. 30, 2024, 9:17 a.m.