options nodate nonumber ps=54 ls=76; data muscle2; infile 'muscle2.dat'; input M 5-8 W 10-16 H 18-24; run; ods PDF file="muscle2_sas1.pdf"; ods graphics on; /* In version 9.3 you can add qqplot in proc reg, not in version 9.2 */ proc reg plots=diagnostics plots(label)=(rstudentbyleverage cooksd); model H = M W /influence vif; run; ods graphics off; ods PDF close; run; quit;