/* Lesson 09-1 */ /* File Name = les0901.sas 12/04/03 */ options linesize=72 pagesize=20; data gakusei; infile 'all03b.prn' firstobs=2; input sex $ height weight chest jitaku $ kodukai carrier $ tsuuwa; proc print data=gakusei(obs=10); run; proc plot data=gakusei; plot height*weight; plot weight*height; run; proc corr data=gakusei; run;