Dear all, I am trying to get a hbar graph using sgplot to represent the relative contribution of scores (0 to 3) in 2 groups. I used the following code: data tempo; input codetrt score nbpat; allpat=1; cards; 1 0 12 1 1 8 1 2 5 1 3 8 2 0 5 2 1 6 2 2 9 2 3 15 run; proc sgplot data=tempo pctlevel=group ; hbar codetrt / response=allpat group=score stat=percent seglabel freq=nbpat; run; I would like to get the frequency counts instead of percentages inside each segment. Could anyone help? Thanks
... View more