Hello, I'm having trouble figuring out how to reduce my PROC REG procedure dataset table to only contain jackknife residuals greater than 2. Here is my my code (libname removed for privacy) and my dataset table output, saved as a PDF file, since the table was too big to post here (500 observations). Thanks in Advance! data assignm2p1; set shr.eclsksub; run; proc reg data=assignm2p1; model c1rgscal= c1r4rscl c1r4mscl / r influence vif; output out=assignm2p1 rstudent=jackknife h=leverage cookd=influence; run; quit; proc print data=assignm2p1; where (abs(jackknife)>2); var jackknife leverage influence ; run;
... View more