从 feols 模型中获取第一阶段 F 统计量的最简单方法是什么?

What is the easiest way to get the first stage F-statistic from an feols model?

我正在尝试使用 R 中的 feols 从 IV 模型 运行 中提取第一阶段的 F 统计量。我的最终目标是在导出的 table 中报告统计量使用 etable。执行此操作的最佳方法是什么?

想通了。 first-stage F 统计量的名称是“ivf”,可以通过fitstat 函数访问。

示例:

reg = feols(Sepal.Length ~ 1 | Sepal.Width ~ Petal.Width, data=iris)
# get the first-stage F statistic
fitstat(reg, "ivf")

# produce a table that includes the first-stage F statistic
etable(reg, fitstat='ivf')