* SAS code for Aneuploidy data from Table 4.2; options linesize=70; data table42; input apoid trt y @@; cards; 0 0 9 0 1 36 1 0 141 1 1 164 proc freq; weight y; tables apoid*trt/all; run;