0
我使用stargazer爲我的學士論文創建迴歸輸出。由於我的數據結構,我必須使用羣集模型(下面的代碼)。我使用multiwaycov軟件包中的vcovclust命令,該命令完美工作。但是,stargazer不支持它。你知道另一種創建輸出的方式,就像觀星者一樣好嗎?或者你知道其他的包/命令來聚集模型,這是由占星師支持?將Stargazer擴展爲multiwaycov
model1.1.2 <- lm(leaflet ~ partisan + as.factor(gender) + age + as.factor(education) + meaning + as.factor(polintrest), data = voxit)
summary(model1.1.2)
#clustering
vcov_clust1.1.2 <- cluster.vcov(model1.1.2, cbind(voxit$id, voxit$projetx))
coeftest(model1.1.2, vcov_clust1.1.2)