Hi, I want to produce a barchart of Response Rate by group over time and plot Mean result of another variable over time in the same graph. If I try SGPLOT, SAS give me a warming saying that he expect VLINE statement to have a GROUP option as well. proc sgplot data=ador; vbar TPTN / response=xx group=RESP; vline x=TPTN y=spepbe / y2axis; xaxis display=(nolabel); yaxis label='Cumulative Percent of Patients'; run; Can I do it using Proc template? Can somebody help me? thanks Justin
... View more