proc reg data=<developmen_data> outest=regout;
model <dep_v>=<Predictors>/selection-stepwise sle=0.1 sls= 0.05 details=all vif;
run;
Using above code in SAS produces 3 tables(since stepwise did not drop any variable) at each step:
- Statistics for entry
- Analysis of variance
- Table with 5 columns: Variable, Parameter estimate, Standard Error, TypeII SS, F value, Pr>F.
I want to add one more column with t value of each variable(to measure the contribution of that variable) in table 3.
How to do that?
Thanks in advance