/* Lesson 11-2 */ /* File Name = les1102.sas 10/07/99 */ options linesize=72 pagesize=20; data gakusei; infile 'all99.dat'; input seibetsu $ height weight chest jitaku $ kodukai; proc print data=gakusei(obs=10); run; proc reg data=gakusei; model weight=height; output out=o_reg1 predicted=pred1 residual=resid1; run; proc print data=o_reg1(obs=15); run; proc plot data=o_reg1; plot weight*height; plot pred1*weight; plot resid1*pred1; plot resid1*height; plot resid1*weight; run;