BookmarkSubscribeRSS Feed
greveam
Quartz | Level 8

Hi,

 

I am trying to use SAS to fit an instrumental variable analysis on a binary outcome. From what I could find online, this can be done using the 2SLS estimator in proc syslin?

 

The data are as follows: death (outcome, yes/no), gene (exposure, class variable), which regulates "normalized" (mediator, continuous variable). The value of "normalized" is also affected by cohort, female, trg_i, and crp_log. What I want to know is:

 

1. If "normalized" (as an instrumental variable) is a causal risk factor for death.

2. If there is evidence for bias when using "normalized" as an observational variable vs. as an instrumental variable (using the Durbin-Wu-Hausman test) on risk of death.

 

Here is my code:

 

proc syslin data=causalmed 2sls;
endogenous normalized;
instruments gene cohort female trg_i crp_log;
model normalized = gene cohort female trg_i crp_log;
model death = normalized cohort female trg_i crp_log;
run;

 

proc model data=causalmed;
endogenous normalized;
instruments gene;
death = pnormalized*normalized + interc;
fit death / ols 2sls hausman;
quit;

 

Is my code correct? Any help would be much appreciated. Thanks!

1 REPLY 1
Ksharp
Super User
If I was right. PROC SYSLIN is under SAS/ETS , so post it at Forecasting Forum .

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
  • 1 reply
  • 488 views
  • 0 likes
  • 2 in conversation