options nodate pagesize=54 linesize=80; /* Read in the input file */ data ex0109; * infile '../../../data/biostat/ex0109.dat'; infile 'C:\\biostat\\data\\ex0109.dat'; input wine death; run; /* Obtain cross tabulation of wine and death */ proc freq; tables wine*death; run; quit;