/* ch05p5.sas */ options ls=80; data a; input x y; cards; 4 16 1 5 2 10 3 15 3 13 4 22 ; proc reg data=a; model y=x/covb xpx i corrb;