如何使用 xtpmg 执行面板动态固定效应 (fe) 模型?
How to perform panel Dynamic Fixed Effects (fe) Model with xtpmg?
我正在使用 Stata 命令 xtpmg 执行合并均值组、均值组和动态固定效应模型。
合并均值组模型 returns 估计,但动态固定效应模型 returns "option fe not allowed".
use http://fmwww.bc.edu/repec/bocode/j/jasa2.dta, clear
xtpmg d.c d.y d.pi, lr(l.c y pi) pmg
Returns 估计
xtpmg d.c d.y d.pi, lr(l.c y pi) fe
Returns 不允许选项 fe
xtpmg
是用户编写的命令(ssc describe xtpmg
)。
相应的 help
文件中似乎有错误,因此请尝试使用源代码 (viewsource xtpmg.ado
) 和您引用的 Stata Journal 文章暗示的 dfe
选项.
尝试联系作者对问题发表评论。
我正在使用 Stata 命令 xtpmg 执行合并均值组、均值组和动态固定效应模型。
合并均值组模型 returns 估计,但动态固定效应模型 returns "option fe not allowed".
use http://fmwww.bc.edu/repec/bocode/j/jasa2.dta, clear
xtpmg d.c d.y d.pi, lr(l.c y pi) pmg
Returns 估计
xtpmg d.c d.y d.pi, lr(l.c y pi) fe
Returns 不允许选项 fe
xtpmg
是用户编写的命令(ssc describe xtpmg
)。
相应的 help
文件中似乎有错误,因此请尝试使用源代码 (viewsource xtpmg.ado
) 和您引用的 Stata Journal 文章暗示的 dfe
选项.
尝试联系作者对问题发表评论。