BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
zihdonv19
Obsidian | Level 7

I want to fit a model below, where edu is a 3-level variable, cou is a binary variable:

proc genmod data=cohort descending;
class id edu (ref='1');
model cou=edu female / dist=poisson link=log;
repeated subject=id/type=ind;
estimate 'edu 2 vs. edu 1' edu 0 1 0;
estimate 'edu 3 vs. edu 1' edu 0 0 1;
ods output Estimates=outtab;
run;

 But the results viewer showed "Non-est" in the contrast estimate results table. I found people always refer to this note (https://support.sas.com/kb/24/447.html) for relevant questions, but I felt so lost after reading this. 

 

I just want to know:

edu 3 vs. edu 1, RR=....95%CI=...

edu 2vs. edu 1, RR=....95%CI=...

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
Check this:
http://support.sas.com/kb/24/188.html

I guessed you should code something like:

proc genmod data=cohort descending;
class id edu ;
model cou=edu female / dist=poisson link=log;
repeated subject=id/type=ind;
estimate 'edu 2 vs. edu 1' edu -1 1 0 /cl ;
estimate 'edu 3 vs. edu 1' edu -1 0 1;
ods output Estimates=outtab;
run;

Check :
https://support.sas.com/kb/24/447.html

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26

Use the LSMEANS command in PROC GENMOD, with the DIFF and CL options. https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_genmod_syntax20.htm

--
Paige Miller
Ksharp
Super User
Check this:
http://support.sas.com/kb/24/188.html

I guessed you should code something like:

proc genmod data=cohort descending;
class id edu ;
model cou=edu female / dist=poisson link=log;
repeated subject=id/type=ind;
estimate 'edu 2 vs. edu 1' edu -1 1 0 /cl ;
estimate 'edu 3 vs. edu 1' edu -1 0 1;
ods output Estimates=outtab;
run;

Check :
https://support.sas.com/kb/24/447.html

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!

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
  • 2 replies
  • 249 views
  • 2 likes
  • 3 in conversation