dm 'log;clear;output;clear;'; options ps=50 ls=85 pageno=1; goptions reset=global border ftext=swiss gunit=cm htext=0.4 htitle=0.5; goptions display noprompt; **********************************************************************; ** **; ** AUTHOR: Chris Bilder **; ** COURSE: STAT 4043 **; ** DATE: 4-30-01 **; ** PURPOSE: Show how to use the ODS with PROC REG **; ** The DFBETAS and other statistics are sent to the data **; ** set called resid **; ** **; ** NOTES: **; ** **; **********************************************************************; title1 'Chris Bilder, STAT 4043'; *Read in the data set from a text file into a SAS data set called set1; data set1; infile 'd:/chris/osu/stat4043/chapter1/data/HSGPA_CollegeGPA.txt'; input X Y; run; proc reg data=set1; model Y = X / influence; ods output OutputStatistics=resid; run; quit;