options formdlim = '-' nodate; data brome; infile 'brome2.txt'; input square row col trt $ abdn; proc print; proc glm; class square row col trt; model abdn = square row(square) col(square) trt; title 'Correct analysis of multiple latin squares'; run; proc glm; class row col trt; model abdn = row col trt; title 'Incorrect analysis of multiple latin squares'; run;