SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
TJ87
Obsidian | Level 7

Dear SAS Community,

I'm trying to write a macro to output odds ratio's and confidence intervals and I wonder if anyone could please help me. My goal is to estimate independent associations between 20 different exposures and risk of disease. I'd like to generate output datasets that I can export to Excel. My basic model program looks something like this:

proc logistic data = test;

class exposure(ref="0")/param=ref;

model caco (event="1")= exposure /clodds=wald; *Caco: 1= case, 2=control;

ods output CLOddsWald= odds_number;

run;

I'd like my macro to call up the exposures so that I don't have to re-write the proc steps 20 times (where exposure=1-20; odds_number=1-20). The tricky part seems to be the output datasets- I tried a macro to call the exposures but the results for exposure2 wrote over the results for exposure1. Can anyone please suggest macro code that will allow me to generate 20 odds ratio output datsets using 1 proc logistic statement? Thank you very much. 

2 REPLIES 2
data_null__
Jade | Level 19

Consider the BY statement.

TJ87
Obsidian | Level 7

Thank you. I found this link to be especially helpful for testing multiple independent variables.

sas-innovate-white.png

Join us for our biggest event of the year!

Four days of inspiring keynotes, product reveals, hands-on learning opportunities, deep-dive demos, and peer-led breakouts. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 750 views
  • 0 likes
  • 2 in conversation