%macro PLOT(var1,data,time,title); goptions reset=global border cback=white htitle=1.5; symbol1 interpol=join value=dot height=0.5 color=red; *symbol2 interpol=join value=none height=0.5 color=blue; axis1 label=none; proc gplot data=&data; plot &var1*&time / haxis=axis1 vaxis=axis2 legend=legend1; title1 "&title" /*height=0.001 in*/; run; quit; %mend; %PLOT(Series_A,import1,T,"Plotting series_A") ; run ; Hi, I'm trying to plot a time series graph but keep getting an error message in regards to my vaxis code. Also when I use sgplot the program isn't reading plot &var1*&time / haxis=axis1 vaxis=axis2 legend=legend1; Can anyone help?
... View more