/*---------------------------------------------- | Code 1_2.sas Some fancier graphics options | ----------------------------------------------*/ title " "; footnote " "; goptions reset=all; * Libname fets "G:\FETS\data"; axis1 label=(angle=90 font=centb h=1.8 color=green) offset=(2,2); axis2 label = (font=centb h=1.2 color=green) minor=none; Title font=oldeng "A" font=centb "irline " font=oldeng "D" font=centb "ata"; proc gplot data=fets.dotairts; plot (passengers passengers)*date/ overlay vaxis=axis1 haxis=axis2; symbol1 v=none i=join c=blue w=2; symbol2 v=none i=rl c=black w=2; format passengers comma12.; run; title " "; footnote " "; goptions reset=all; quit;