/* Lesson 09-2 */ /* File Name = les0902.sas 06/12/03 */ options linesize=72 pagesize=20; data gakusei; infile 'all03a.prn' firstobs=2; input sex $ height weight chest jitaku $ kodukai carrier $ tsuuwa; proc print data=gakusei(obs=10); run; proc reg data=gakusei; model weight=height; output out=outreg1 predicted=pred1 residual=resid1; run; proc print data=outreg1(obs=15); run; proc plot data=outreg1; plot weight*height/vaxis=20 to 100 by 20; plot pred1*weight; plot resid1*pred1/vref=0; plot resid1*height/vref=0; plot resid1*weight/vref=0; run;