/* x3_5.sas */ /* Purpose: */ title1 'Example 3.5.'; data temp; input y my1 th11 th12 th21; cards; 0 1 1 0 0 -2 1 1 0 0 -19 1 0 1 0 -15 1 0 1 0 -6 0 0 0 1 0 0 0 0 1 -2 0 0 0 1 ; proc print; title1 'List of data.'; proc glm; model y = my1 th11 th12 th21 /noint solution xpx inverse e; title1 'Analysis by GLM.'; run;