导出 Hausman 检验

问题描述

我正在寻找一种在 Stata 中导出 Hausman 测试的方法 (hausman model1 model2) 有人可以帮我吗?

我愿意接受任何其他关于如何为我的论文报告在 Stata 中进行的 Hausman 测试的结果的建议。 我想当我报告已经进行了它时,我需要附加结果(如果我错了,请纠正我!)

解决方法

我不确定您所说的导出(导出到 Excel、导出到表格等)究竟是什么意思?

无论如何,来自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)

上面的代码将卡方存储在一个标量中。然后,您可以使用此标量以您想要的方式导出它。