BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ffgsdf
Fluorite | Level 6

When we are talk about confouders in statistics, we usually say that the distribution of confounders is not equal in Expousre and Disease and the confounders also correlate with disease and expousre.

 

It is very easy to simulate confounder's effect in continuous variable and test it by regression by creating a random varaible on confouder and multiply it with plus one error term to get the x and y. 

 

Now, the correlation between X and Y is due to confounder. 

 

However, I am confused when I try to simulate in binary variable. 

 

can everyone shows me how to do it in E, D, and Confounder all are binary variables. 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

You could play with something like this:

 

data test;
length C D E $16;
call streamInit(8685);

exposedEffect = 1; /* No difference in exposure effect */
unexposedEffect = 1;
confoundEffect = 10; /* Effect mostly due to confounding factor */

probC_Exposed = 0.7; /* Confounding probability in exposed group */
probC_Unexposed = 0.1; /* Confounding probability in unexposed group */

groupSize = 100;

/* Unexposed group */
E = "Unexposed";
do i = 1 to groupSize;
    id + 1;
    if rand("BERNOULLI", probC_Unexposed) then C = "Confounded";
    else C = "Unconfounded";
    if rand("BERNOULLI", logistic(unexposedEffect+(C="Confounded")*confoundEffect)) 
        then D = "Sick";
    else D = "Not sick";
    output;
    end;

/* Exposed group */
E = "Exposed";
do i = 1 to groupSize;
    id + 1;
    if rand("BERNOULLI", probC_Exposed) then C = "Confounded";
    else C = "Unconfounded";
    if rand("BERNOULLI", logistic(ExposedEffect+(C="Confounded")*confoundEffect)) 
        then D = "Sick";
    else D = "Not sick";
    output;
    end;

keep id C D E;
run;

/* Exposure effect shows up as significant when confounding is ignored */

proc freq data=test;
tables E*D / chisq;
run;

proc logistic data=test;
class E;
model D(event="Sick") = E;
run;

/* Etc... */
PG

View solution in original post

1 REPLY 1
PGStats
Opal | Level 21

You could play with something like this:

 

data test;
length C D E $16;
call streamInit(8685);

exposedEffect = 1; /* No difference in exposure effect */
unexposedEffect = 1;
confoundEffect = 10; /* Effect mostly due to confounding factor */

probC_Exposed = 0.7; /* Confounding probability in exposed group */
probC_Unexposed = 0.1; /* Confounding probability in unexposed group */

groupSize = 100;

/* Unexposed group */
E = "Unexposed";
do i = 1 to groupSize;
    id + 1;
    if rand("BERNOULLI", probC_Unexposed) then C = "Confounded";
    else C = "Unconfounded";
    if rand("BERNOULLI", logistic(unexposedEffect+(C="Confounded")*confoundEffect)) 
        then D = "Sick";
    else D = "Not sick";
    output;
    end;

/* Exposed group */
E = "Exposed";
do i = 1 to groupSize;
    id + 1;
    if rand("BERNOULLI", probC_Exposed) then C = "Confounded";
    else C = "Unconfounded";
    if rand("BERNOULLI", logistic(ExposedEffect+(C="Confounded")*confoundEffect)) 
        then D = "Sick";
    else D = "Not sick";
    output;
    end;

keep id C D E;
run;

/* Exposure effect shows up as significant when confounding is ignored */

proc freq data=test;
tables E*D / chisq;
run;

proc logistic data=test;
class E;
model D(event="Sick") = E;
run;

/* Etc... */
PG

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!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1031 views
  • 0 likes
  • 2 in conversation