options nocenter; data new; infile 'i:\.www\datasets502\example8-1.dat'; input child wgt hgt age; proc reg; model wgt = hgt age / ss1; model wgt = age hgt / ss1; run; proc glm; model wgt = hgt age / ss1 ss3; run;