* FairCoin2 Example; * Same as FairCoin2 but analyze a contingency table rather than the raw data; options linesize=70 nodate pageno=1; data flips; input flip count; datalines; 0 29 1 21 ; proc print; proc freq; weight count; table flip / chisq; run; quit;