/* Lesson 12-1 */ /* File Name = les1201.sas 10/05/00 */ options linesize=72 pagesize=20; data gakusei; infile 'all00.prn'; input seibetsu $ height weight chest jitaku $ kodukai; proc print data=gakusei(obs=10); run; proc plot data=gakusei; plot height*weight; plot weight*height; run; proc means data=gakusei; run; proc corr data=gakusei; run;