Hi
I need to transform one of the independent variables in my model into exponential form and I wrote this code in sas but it doesn't work
could anyone please help me with this
data new1; set salary;
x7=exp (x7);
run;
proc corr data=new1 plots=matrix(nvar=all nwith=all histogram);
var y x1 x2 x3 x4 x5 x6 exp(x7) x8 x9 x10;
run;
proc reg data=new1 plots(label)=(cooksd dfbetas dffits diagnostics observedbypredicted);
model y x1 x2 x3 x4 x5 x6 exp(x7) x8 x9 x10/alpha=.05 r p clb cli clm stb vif partial influence collinoint collin;