BookmarkSubscribeRSS Feed
Gisk
Calcite | Level 5

How to write a model like this: y=var1+var2^-0.15 in SAS?

Proc glm:

Model y=var1 var2????

2 REPLIES 2
OS2Rules
Obsidian | Level 7

y=var1+var2**-0.15

Gisk
Calcite | Level 5

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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1144 views
  • 0 likes
  • 2 in conversation