作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个模型,我怀疑内生性。我想通过 Wu hausman 测试来测试是否是这种情况,尽管我找不到任何方法来执行此操作。
已执行以下回归:
library(AER)
ivreg1 <-
ivreg(budget~ policyfactor+ control1 + control 2 | IV + control1 + control2, data=df)
df <- data.frame(
budget = c(10, 8, -7, 8, 3, 2, 0.5, 1.5, -2, -15, 30, -0.5, 12, 18),
policyfactor = c(1L, 1L, 0L, 0L, 0L, 1L, 1L, 0L, 0L, 0L, 1L, 0L, 1L, 1L),
IV = c(17L,46L,18L,23L,35L,10L,0L,19L,
15L,12L,21L,6L,27L,10L),
control1 = c(29.4,27.4,33.2,27.1,27.4,34.2,
26.8,32.9,26,26.3,27.3,33.4,23.5,31.3),
control2 = c(1.3,20,-0.2,3,3.4,0.3,-1.1,1.9,
-2,-1.6,2.8,1.9,2,1.8)
)
创建于 2020-06-20 由
reprex package (v0.3.0)
最佳答案
Hausman 检验在 summary
中可用使用方法 diagnostics=TRUE
选项。
summary(ivreg1, diagnostics=TRUE)
# Call:
# AER::ivreg(formula = budget ~ policyfactor + control1 + control2 |
# IV + control1 + control2, data = df)
#
# Residuals:
# Min 1Q Median 3Q Max
# -18.292 -4.920 -1.719 4.057 23.612
#
# Coefficients:
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) 14.4933 31.2550 0.464 0.653
# policyfactor 1.2168 15.1335 0.080 0.938
# control1 -0.3945 0.9835 -0.401 0.697
# control2 0.5168 0.7209 0.717 0.490
#
# Diagnostic tests:
# df1 df2 statistic p-value
# Weak instruments 1 10 2.211 0.168
# Wu-Hausman 1 9 0.944 0.357 <--- THERE IT IS!
# Sargan 0 NA NA NA
#
# Residual standard error: 11.46 on 10 degrees of freedom
# Multiple R-Squared: 0.1545, Adjusted R-squared: -0.09916
# Wald test: 0.381 on 3 and 10 DF, p-value: 0.769
关于r - Wu Hausman 检验来检验内生性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62485993/
我有一个模型,我怀疑内生性。我想通过 Wu hausman 测试来测试是否是这种情况,尽管我找不到任何方法来执行此操作。 已执行以下回归: library(AER) ivreg1 |t|) # (In
我一直在使用“ plm ”包电话 做面板数据的分析。此包中用于在“固定效应”或“随机效应”模型之间进行选择的重要测试之一称为 豪斯曼型 . Stata 也有类似的测试。这里的重点是 斯塔塔 需要先估计
我想制作一个“广义线性模型的固定/随机模型”(family =“二项式”),因为我有一个数据库,其中观察来自总体并且有分组结构。然后我使用函数glmer来自lme4包,我也读到我可以使用 glmmPQ
我用 texreg在表格中报告几个随机效应模型的结果(使用 plm 估计)。 如何将 Hausman 检验的 p 值(将每个模型与其固定效应对应物进行比较)添加到 texreg 报告的拟合优度度量中?
我是一名优秀的程序员,十分优秀!