在 -xtreg- 中检索固定效应联合显着性的 F 检验统计量

Retrieving F-test statistic on fixed effects joint significance in -xtreg-

我 运行 等价于以下回归:

sysuse auto, clear

xtset rep78
xtreg mpg weight, fe 

我需要存储模型固定效应联合显着性 F 检验的 F 统计量(在本例中,输出中 F(4, 63) = 1.10)。

我查看了xtreg的post-estimation 文档并在网上搜索,但我找不到任何相关信息。 非常感谢

您在固定效应回归的样本输出中所指的行是

F test that all u_i=0: F(4, 63) = 1.10

您不想在 help xtreg postestimation 中查找,而是在 help xtreg 中查找,其输出在底部包含在 e() 中返回的存储结果列表。其中,xtreg, fe 部分是

e(F_f)              F for u_i=0

如果您不熟悉 e() 中返回的存储结果,您将需要查看 help ereturn