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-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!

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
  • 428 views
  • 0 likes
  • 2 in conversation