0

我正在研究 coefplot,我想将标签的图例大小重新调整为 vsmall。但是,当我使用 labsize(vsmall)) 时。我得到一个错误。我错过了 coefplot 中的特定步骤吗?

coefplot weight height, xtitle(Medical Records) ytitle(Share) ///
vertical recast(bar) barwidth(0.15) finten(60)  plotlabels("male" "female" "child"   ///
"adult", labsize(vsmall)) graphregion(color(white)) bgcolor(white)

谢谢你。

4

1 回答 1

2

您将希望完全从命令中删除,并作为选项labsize(vsmall)添加到命令的末尾。legend(size(vsmall))您的最终命令应如下所示:

coefplot weight height, xtitle(Medical Records) ytitle(Share) vertical recast(bar) barwidth(0.15) finten(60) plotlabels("male" "female" "child" "adult") graphregion(color(white)) bgcolor(white) legend(size(vsmall))
于 2022-01-27T16:56:27.730 回答