您能在catplot中删除类别标签吗?(ssc install catplot)
我正在尝试绘制一个单一的类别,例如
sysuse auto, clear
catplot foreign rep78 if rep78 == 3, recast(bar)我想把x轴上的"3“去掉
发布于 2020-04-15 04:32:46
catplot foreign if rep78 == 3, recast(bar)似乎是一种更简单的方法。
https://stackoverflow.com/questions/61216505
复制相似问题