BookmarkSubscribeRSS Feed
ajb
Obsidian | Level 7 ajb
Obsidian | Level 7

Hello All, 

 

I'm using SAS, Version 9.2

 

Variables in my model:

  • Event: 0, 1

  • height: continuous

  • group: 0, 1 (ref=group 0)

  • height*group: interaction term

I currently need to estimate the OR for height by different groups

Do I do the following:

Exponentiate height to get OR for group = 0

Exponentiate height height*group to get OR for group =1

 

proc genmod data=temp;

class group;

model event(ref="0")=height group height*group/ link=logit dist=binomial;

estimate "height group 0" height 1 / exp;

estimate "height group 1" height 1 height*group 1/exp;

run;

 

I also have a model with 3 groups instead of 2.

  • Event: 0, 1

  • height: continuous

  • group: 0, 1, 2 (ref=group 0)

  • height*group1 

  • height*group2

would the code be 

proc genmod data=temp;

class group;

model event(ref="0")=height group height*group/ link=logit dist=binomial;

estimate "height group 0" height 1 / exp;

estimate "height group 1" height 1 height*group 1 0 0 /exp;

estimate "height group 1" height 1 height*group  0 1 0 /exp;

run;

1 REPLY 1

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1 reply
  • 368 views
  • 0 likes
  • 2 in conversation