I am using the SAS command to run a linear multiple regression, stepwise method. However, I have covariates and I would like to know, which is the correct SAS command for this. My actual command is: proc reg data=a; model dependent_variable= independent_variables/selection=stepwise; run;
... View more