Hi, I guess I could write the code that generates the plots I want. If you run it u'll be able to understand what I was looking for. HOWEVER, I'd like to print the 20 graphs on the same page. Could you please give me a code that would generate all 20 graphs on the same page? data test; infile "F:\ftse.csv" DSD MISSOVER; input date :MMDDYY9. open high low close volume adjclose RETURN month box logprice actdiff; format date mmddyy10.; run; data test1; set test; mm = month (date); year = year (date); keep mm year return date; run; options validvarname=upcase; goptions ftext='Arial' htext=2 gunit=pct; symbol1 v=dot i=join; axis1 label=(angle=90 "Variance"); title h=4 "Yearly Variance"; footnote j=right "Source: FTSE Data-UK"; proc gplot data = test1 ; by year ; plot return*date/ overlay; run;
... View more