Hi everyone, i am having issue with proc sgplot xaxis values. here is my code ods pdf file="R:\\14.1.4.pdf"; proc sgplot data=count dAttrMap=attrmap ; by cohort subject; /* The ATTRID option references the name of the attribute map */ vbar day / group=organism grouporder=ascending attrid=organism barwidth=0.3 ; xaxis label="Study Day" values=(0 to 8 by 1); yaxis values=(0 to 8 by 1); format day dy.; title1 "VE303 Detection panel-Stacked bar charts"; run; ods pdf close; when i got the output it is not taking from 0 to 8 by 1. please help to get the xaxis values as mentioned . look at the output picture on top. Thank you
... View more