options nocenter ls=75; data table8; infile 'I:\.www\datasets502\EX1219.DAT' firstobs=2 dlm='09'x; input sub age sex $ hgt wgt fev; proc reg corr; model fev = hgt wgt age / r influence; plot rstudent.*p. / nostat nomodel; plot rstudent.*nqq. / nostat nomodel; plot h.*p. / nostat nomodel; plot cookd.*obs. / nostat nomodel; output out=new1 p=pred rstudent=res; proc univariate; var res; run; quit;