我正在尝试使用 SAS 中的 Proc sgplot 将每个组的数量添加到 xaxis 上的组标签中。这是我想要的数据和图表。我想在 xaxis 上获取每个条的样本(手写部分)。非常感激你的帮助!
Data have ;
input type sex $ n n_total percent ;
datalines;
0 F 6 29 20.7
1 F 387 496 78.2
0 M 4 15 26.6
1 M 264 305 86.5
;
Run;
proc sgplot data=have ;
vbarparm category= type response=percent /group=sex groupdisplay=cluster datalabel;
run;