/* Lesson 11-2 */ /* File Name = les1102.sas 06/28/01 */ options linesize=72 pagesize=20; data gakusei; infile 'all01.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;