How to write a model like this: y=var1+var2^-0.15 in SAS?
Proc glm:
Model y=var1 var2????
y=var1+var2**-0.15
I did like this:
Proc glm data=dataset1;
class var1 var2;
Model y=var1+var2**-0.15/solution ss3;
lsmeans var1 var2/stderr pdiff;
run;
But this dident work. I am interested in get the best fitted model for my dataset.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.