SAS Fit a regression model for prediction of ‘mpg’ by the other five variables. Report the variation inflation factors and explain.
Here is the code for reading in the file:
DATA mpg;
INFILE '/home/u42258867/sasuser.v94/auto-mpg.data.txt';
INPUT n1-n6;
run;
mpg is n1, thus I need to make a regression model to predict n1 by n2-n6 and I'm not sure how to do this.
proc reg
. For increased functionality look intoproc glmselect
. – J_Lard