Hi there, I am having trouble adding error bars to each bar in my vertical bar chart using Proc sgplot. First of all, is this even possible? Every discussion forum/questions never shows grouped bar charts. I have all the options on in my code to enable error bars but they are not being produced on the graph. My code is below - Is there a step I am missing? Proc sgplot data=LSMTrtTOD1; vbar TOD / response=Estimate stat=mean numstd=2 limitstat=stderr limits=both group=Trt groupdisplay=cluster fillpattern nofill; keylegend / position=top noborder; yaxis grid; Run;
... View more