BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ARC2
Fluorite | Level 6

Say a is 4 age groups and b is gender;

I want to compare age group 1 with age group 4 for the same gender. 

I think the estimate statements below will get me the means for two groups, but I have no idea how to write the statement that compares the two. Help would be appreciated.  Thank you. 

 

 

Proc glm or genmod or whateverl

class a b c;

model y= a b c;

run; 

 

estimate 'age group 1 female' int 1 a 1 0 0 0 b 0 1;

estimate 'age group 2 female' int 1 a 0 0 0 1 b 0 1;

1 ACCEPTED SOLUTION

Accepted Solutions
StatsMan
SAS Super FREQ

Since there is no interaction between age and gender, the difference between age groups will be the same for either gender.  Your ESTIMATE or CONTRAST would be

 

estimate 'age difference' age 1 0 0 -1;

 

You can get this by differencing the coefficients for the 2nd ESTIMATE statement from your first.  The coefficients on the intercept and on GENDER cancel out, leaving you with the coefficients above. 

View solution in original post

1 REPLY 1
StatsMan
SAS Super FREQ

Since there is no interaction between age and gender, the difference between age groups will be the same for either gender.  Your ESTIMATE or CONTRAST would be

 

estimate 'age difference' age 1 0 0 -1;

 

You can get this by differencing the coefficients for the 2nd ESTIMATE statement from your first.  The coefficients on the intercept and on GENDER cancel out, leaving you with the coefficients above. 

CFC_SAS_Communities_400x225.jpgCFC_SAS_Communities_400x225.jpg

Call for content now open!

It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.

Submit your proposal →

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1199 views
  • 2 likes
  • 2 in conversation