reghdfe requires the ftools package, which is not installed - install from SSC - install from Github
时间: 2024-06-08 21:10:36 浏览: 605
VirtualBox 错误:This kernel requires the following features not present on the CPU
这个错误提示是因为在运行 reghdfe 命令时,所需的 ftools 包没有被安装。您需要先安装 ftools 包,然后再重新运行 reghdfe 命令。
您可以通过以下两种方法中的任一一种来安装 ftools 包:
1. 从 SSC 安装:
在 Stata 命令窗口中输入以下命令:
```
ssc install ftools
```
按下回车键后,Stata 会自动从 SSC(Statistical Software Components)下载并安装 ftools 包。
2. 从 Github 安装:
在 Stata 命令窗口中输入以下命令:
```
net install ftools, from("https://raw.githubusercontent.com/sergiocorreia/ftools/master/")
```
按下回车键后,Stata 会自动从 Github 下载并安装 ftools 包。
安装完成后,您可以重新运行 reghdfe 命令,该命令应该能够正常工作了。
阅读全文