Hi, I have this code data have; input study_name $ June July August; datalines; A 20 16 39 B 18 18 6 C 19 1 5 D 87 65 115 E 63 55 62 F 81 104 87 G 73 19 49 H 189 69 79 I 28 6 8 J 87 83 52 K 0 0 0 L 0 0 0 M 4 1 1 N 1 0 2 O 212 159 304 ; proc transpose data=have out=trans name=Month; by study_name; var June July August; run; Proc sgplot data=trans; vbar month / response=col1 group=study_name; yaxis grid display=(nolabel); Xaxis display=(nolabel); run; which produces this result in the picture. Note that the months in the bar chart are not displayed as they are in their order, they have alphabetical order. I tried to find an option to change that but I couldn't find. Also, I don't need to display the study_name in the chart and don't know how to change the default.
... View more