/*http://www.ats.ucla.edu/stat/sas/examples/alda/chapter2/aldasasch2.htm*/ libname rus 'C:\1datalap\papers\walls_sork'; goptions reset=all noborder ftext=titalic nocell rotate = portrait htext=4 hby=0 vsize=7.9 hsize=7; symbol color=black i=none value=dot height=2 ; axis1 label=('OCCASION' ) minor=none ; axis2 label = none order=(0 to 4 by 1) minor=none; proc gplot data=rus.ruswork1 gout=graph1 uniform ; note justify=center 'ID #byval(ID)'; symbol color=black interpol=spline value=dot height=2 ; by id; plot motiv*occasion / nolegend haxis=axis1 vaxis=axis2 noframe; run;