出口豪斯曼测试
Export Hausman test
我正在寻找一种在 Stata 中导出 Hausman 测试的方法
(hausman model1 model2
)
有人可以帮我吗?
我愿意接受任何其他关于如何为我的论文报告在 Stata 中进行的 Hausman 测试结果的建议。
我想当我报告进行了它时,我需要附加结果(如果我错了请纠正我!)
我不确定导出(导出到 Excel、导出到 table 等...)的确切含义?
无论如何,从help hausman
:
hausman stores the following in r():
Scalars
r(chi2) chi-squared
r(df) degrees of freedom for the statistic
r(p) p-value for the chi-squared
r(rank) rank of (V_b-V_B)^(-1)
这些是您在 运行 hausman
之后可以访问的结果。例如:
hausman model1 model2
scalar chi2 = r(chi2)
以上代码将卡方存储在标量中。然后您可以使用此标量以您想要的方式导出它。
我正在寻找一种在 Stata 中导出 Hausman 测试的方法
(hausman model1 model2
)
有人可以帮我吗?
我愿意接受任何其他关于如何为我的论文报告在 Stata 中进行的 Hausman 测试结果的建议。 我想当我报告进行了它时,我需要附加结果(如果我错了请纠正我!)
我不确定导出(导出到 Excel、导出到 table 等...)的确切含义?
无论如何,从help hausman
:
hausman stores the following in r():
Scalars
r(chi2) chi-squared
r(df) degrees of freedom for the statistic
r(p) p-value for the chi-squared
r(rank) rank of (V_b-V_B)^(-1)
这些是您在 运行 hausman
之后可以访问的结果。例如:
hausman model1 model2
scalar chi2 = r(chi2)
以上代码将卡方存储在标量中。然后您可以使用此标量以您想要的方式导出它。