- 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
我从这里实现了 Xiaolin Wu 圆算法:https://create.stephan-brumme.com/antialiased-circle/在 C++ 中: float radiusX =
我正在努力实现“快速抗锯齿圆圈生成器”例程,吴晓林在他的论文“一种有效的抗锯齿技术”中描述了 Siggraph '91。 这是我使用 Python 3 和 PySDL2 编写的代码: def draw
是否有任何 Android API 允许我读取音频文件的声级?因为我需要编写一个由播放轨道的音频级别生成的视觉效果。 最佳答案 那不是真正的Android主题。我想使用音频缓冲区会帮助你。查看此链接:
我正在为我的应用程序使用 firebase firestore。每当我尝试调用 firebase.firestore().collection("users") , 我得到 undefined is
我正在尝试使用 DDA(数字微分分析仪)制作一种绘制线条的算法,该算法还使用 Wu 的算法作为抗锯齿。 问题是输出看起来不太好。特别是: 我选择的颜色,它会改变(我知道为什么,但我想知道是否必须这样)
我正在寻找用 C 语言实现 Xiaolin Wu 的抗锯齿线条绘制算法的一个漂亮而高效的实现,有人可以与我分享这段代码吗? 谢谢 最佳答案 维基百科有 pseudo code . Google 有很多
我正在尝试将 BigInteger 数字转换为其十六进制格式,以便我可以将其用于进一步的 HMAC 计算。我已使用以下帖子来获取执行此操作的代码。 Converting a 64 bit number
我正在尝试调用 Xiaolin wu 的线路算法。我从 rosettacode.org 找到了一个版本,但我不知道如何调用它。 这是链接: https://rosettacode.org/wiki/X
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我以非root访问方式完成了docker安装,即 1.define a docker user group 2.add my current user to the docker group 通过测试
我是一名优秀的程序员,十分优秀!