BookmarkSubscribeRSS Feed
Jack_Smitherson
Fluorite | Level 6
 

In Proc Logistic we can add 'Units" statement to change the unit of the explanatory variable. Is there any equivalent statement in Proc Genmod procedure?

 

Instead of one unit change in the covariate "X1" I need 5 units change in "X1".

X1 and X1 are continuous.

 

Example:

 

proc genmod data=example  DESCENDING;

      model epid = x1 x2 female race;

      estimate "X1" X1 1 / exp;

run;

 

Thanks!

5 REPLIES 5
SAS_Rob
SAS Employee

There is no UNITS statement per se, but you can use the unit of change of the coefficient on the ESTIMATE statement.

 

estimate "X1-5 unit change" X1 5 / exp;

CharleneG
Calcite | Level 5

In that same vein, is there a way to use the ESTIMATE function to output the estimate for a 1 standard deviation change of that independent variable? 

 

For example, 

proc genmod data= test;

model bloodpressure= X1 age sex /link=identity dist=normal;

estimate "X1- 1 SD change" X1 1*SD?;

run;

 

Thanks! 

StatDave
SAS Super FREQ
Just compute the standard deviation and specify that value in the ESTIMATE statement as above.
CharleneG
Calcite | Level 5
Thanks! I was hoping it could be automated as I will be running this as part of a macro.
SAS_Rob
SAS Employee

If you need to automate you could simply run a Proc MEANS prior to running LOGISTIC and save the standard deviation to a MACRO variable.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 5 replies
  • 3576 views
  • 3 likes
  • 4 in conversation