/* Lesson 8-4 */ /* File Name = les0804.sas 06/22/00 */ options linesize=72 pagesize=20; data gakusei; infile 'all00.prn'; input seibetsu $ height weight chest jitaku $ kodukai; proc format; value clheight low-<150=' -149' 150-<160='150-159' 160-<170='160-169' 170-<180='170-179' 180-high='180- ' other ='missing'; run; proc print data=gakusei(obs=10); run; proc tabulate data=gakusei; class height seibetsu; var weight; tables weight*(n mean std),height*seibetsu; format height clheight.; run;