在Stata回归后,我试图只绘制交互项的系数。
我无法使用community-contributed command做到这一点coefplot
。
这是一个可重现的示例和我尝试的解决方案:
sysuse auto, clear
reg price foreign i.turn foreign#i.turn
*this plots all coefficients:
coefplot,
*this drops _cons and foreign but not i.turn
coefplot, drop(i.turn _cons foreign )
*variations with keep also do not work
coefplot, keep(foreign#i.turn )
还有其他方法吗?
我已经在Statalist上交叉发布了这个问题。