/* Lesson 11-1 */ /* File Name = les1101.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 means data=gakusei; run; proc corr data=gakusei; run; proc plot data=gakusei; plot height*weight; plot weight*height; run;