*NKNW817a.sas, two-way anova using data in Table 19.7; options nocenter; data a1; infile 'c:\Ageorge\Purdue\Stat512\Textdata\CH19TA07.DAT'; input sales height width; proc print data=a1; run; proc glm data=a1; class height width; model sales=height width height*width; run;