/* paspalum1.sas */ /* paspalum root weight example */ data paspalum; input treat $ weight; cards; inocul 3.9 inocul 4.3 inocul 4.9 inocul 5.2 inocul 6.5 inocul 7.6 inocul 9.6 inocul 10.0 inocul 10.1 inocul 12.3 inocul 13.6 inocul 19.7 notinoc 6.2 notinoc 8.7 notinoc 11.0 notinoc 12.2 notinoc 12.3 notinoc 13.1 notinoc 13.6 notinoc 14.5 notinoc 15.4 notinoc 16.4 notinoc 16.7 notinoc 21.8 ; proc ttest data=paspalum ci=none plots (shownull only) = (histogram boxplot interval qq); class treat; var weight; title 'paspalum root weight example'; proc univariate data=paspalum normal nextrval=5; class treat; var weight; ods select BasicMeasures TestsForNormality ExtremeValues Quantiles; title 'paspalum root weight example summary'; run;