作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经阅读了很多关于将简单的健壮选项从 STATA 复制到 R 以使用健壮的标准错误的痛苦。我复制了以下方法:StackExchange和 Economic Theory Blog .它们可以工作,但我面临的问题是,如果我想使用 stargazer
打印结果函数(这会打印 Latex 文件的 .tex
代码)。
这是我的问题的说明:
reg1 <-lm(rev~id + source + listed + country , data=data2_rev)
stargazer(reg1)
vcov <- vcovHC(reg1, "HC1")
lmtest()
至少可以打印估计量,但不能打印观察值 R2, adj。 R2、残差、残差 St.Error 和 F 统计。
lmtest::coeftest(reg1, vcov. = sandwich::vcovHC(reg1, type = 'HC1'))
t test of coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) -2.54923 6.85521 -0.3719 0.710611
id 0.39634 0.12376 3.2026 0.001722 **
source 1.48164 4.20183 0.3526 0.724960
country -4.00398 4.00256 -1.0004 0.319041
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Residual standard error: 17.43 on 127 degrees of freedom
Multiple R-squared: 0.09676, Adjusted R-squared: 0.07543
F-statistic: 4.535 on 3 and 127 DF, p-value: 0.00469
lm
中使用稳健的标准错误函数并应用
stargazer
功能?
最佳答案
您已经计算了稳健的标准误差,并且有一种简单的方法可以将其包含在 stargazer
中。输出:
library("sandwich")
library("plm")
library("stargazer")
data("Produc", package = "plm")
# Regression
model <- plm(log(gsp) ~ log(pcap) + log(pc) + log(emp) + unemp,
data = Produc,
index = c("state","year"),
method="pooling")
# Adjust standard errors
cov1 <- vcovHC(model, type = "HC1")
robust_se <- sqrt(diag(cov1))
# Stargazer output (with and without RSE)
stargazer(model, model, type = "text",
se = list(NULL, robust_se))
关于stargazer - lm() 中使用 stargazer() 的稳健标准误差,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58923112/
我是一名优秀的程序员,十分优秀!