Dear SAS Community,
I would greatly appreciate it if you could let me know how to include percent of frequency inside all levels of the Variable Peel Color in this graph. For some levels the % is included in the bars, but not for all levels.
This is the code I am using:
ods powerpoint file='Storage PeelColor BL516 Harvest.pptx'image_dpi=300; title "Storage PeelColor: BL516 vs Hass by Harvest month"; proc sgpanel data=one pctlevel=group; where Harvest in(1,2,3,4,5,6,8) and Variety in('BL516','Hass'); panelby Harvest / columns=7 onepanel; vbar Variety / group=PeelColor grouporder=ascending stat=percent groupdisplay=stack seglabel; run; ods powerpoint close;
Thank you very much
... View more