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.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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