英文:
Display only one bar produced by a bar chart
问题
有没有办法只显示 sgplot vbar 生成的柱状图中的一个条柱?例如,
proc sgplot data=sashelp.birthwgt;
vbar married / stat=percent;
run;
返回这个图:
但我想要这个(经过修改的):
英文:
Is there a way to only show one of the bars produced by sgplot vbar? For example,
proc sgplot data=sashelp.birthwgt;
vbar married / stat=percent;
run;
returns this plot:
but I want this (photoshopped):
答案1
得分: 2
Use the xaxis
语句的values=
选项。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论