/* Lesson 9-2 */ /* File Name = les0902.sas 06/29/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 npar1way data=gakusei wilcoxon; class seibetsu; var height weight chest kodukai; run;