在Stata中,我如何将coefplot的分类变量分组?

时间:2015-07-02 13:34:24

标签: graphics stata coefplot

我正在使用coefplot命令(sourcedocs)在Stata中绘制关于连续变量的方法。

小型可复制的例子:

sysuse auto, clear
drop if rep78 < 3
la de rep78 3 "Three" 4 "Four" 5 "Five"
la val rep78 rep78

mean mpg if foreign == 0, over(rep78)
eststo Domestic
mean mpg if foreign == 1, over(rep78)
eststo Foreign

su mpg, mean
coefplot Domestic Foreign , xtitle(Mpg) xline(`r(mean)') 

给我结果:

enter image description here

我想添加的是Y轴的额外“组”标签。从回归示例中尝试选项似乎不起作用:

coefplot Domestic Foreign , headings(0.rep78 = "Repair Record 1978")
coefplot Domestic Foreign , groups(?.rep78 = "Repair Record 1978")

还有其他可能性吗?

1 个答案:

答案 0 :(得分:2)

这似乎可以完成这项工作

hidden

我不知道它如何处理具有相同标签的分类变量的情况?