Add upper confidence limit to sgpanel vbar plot in SAS?

Viewed 23

I am trying to add the upper confidence limit on a vertical bar plot in SAS using sgpanel, but can't seem to find a way. If anyone has suggestions, I'd appreciate any assistance. Many thanks.

proc sgpanel data=RG_plot ;
    panelby district species / layout=lattice columns=5 rows=4 ;*novarname ;
    styleattrs datacolors=(lightgray gray) datacontrastcolors=(gray gray);
    refline 2 10  20 50/ axis = y lineattrs=(thickness=1 color=lightgray pattern=dash);
    vbar risk_group /  group=type response=prev datalabel=prev GROUPDISPLAY=CLUSTER DATALABELFITPOLICY=NONE  DATALABELATTRs=(Color=Black Family=Arial Size=6);
    keylegend / title="" down=1 NOBORDER;
run; 
0 Answers
Related