BookmarkSubscribeRSS Feed
hellohello1
Calcite | Level 5

Hello,

 

I have 4 independent groups of individuals that I would like to compare in terms of their mental health outcomes (a continuous depression score). I am running a linear reg, with proc surveryreg. I am controlling for a slew of covariates, and adding in a weight statement, since this is survey data. My question has to do with the dummy coding. Is it enough to just reference code using the class statement, or do I need to also include an estimate statement? I will be comparing each of my groups to group 4. What I'm essentially interested in, is getting the parameter estimates and SE for each group against the reference group. 

 

proc surveyreg; 

weight;

class groups(ref='4');

model mentalhealth=Groups /solution;

estimate 'group 1 vs 4' groups 1 0 0 -1;

estimate 'groups 2 vs 4' groups 0 1 0 -1;

.

.

.

run;

3 REPLIES 3
SteveDenham
Jade | Level 19

In my opinion, I think you will find the results of the estimate statements to be more meaningful than just looking at the solution vector.

 

However, you have a problem, in that the variable 'groups' doesn't appear in your MODEL statement.  In the current MODEL statement, the only effect variable is 'cluster', which I don't think refers to group.  You will need to correct one or the other to get any results.

 

Steve Denham

 

 

hellohello1
Calcite | Level 5

Oops, that was just a typo. 

 

What information does the estimate statement give you, versus the solution vector?

SteveDenham
Jade | Level 19

The ESTIMATE statement will enable you to get the difference between levels, given the other covariates.  Much easier would be to use an LSMEANS statement, such as:

 

LSMEANS groups/diff=control('4');

 

Steve Denham

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 3 replies
  • 1419 views
  • 1 like
  • 2 in conversation