Week 8: Confounding and Effect Modification Flashcards

1
Q

What is effect modification?

A

Effect modification occurs when the effect of an exposure on an outcome varies across levels of another variable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How can you identify effect modification?

A

By examining whether the relationship between exposure and outcome changes across strata of a third variable or through interaction terms in regression

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the role of stratification in assessing confounding and effect modification?

A

Stratification allows you to separate the data into groups (strata) to evaluate the relationship between variables while accounting for potential confounders or effect modifiers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What statistical tools are used to assess confounding?

A

Mantel-Haenszel stratification, comparison of crude and adjusted estimates, and regression models

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do regression models help in addressing confounding?

A

Regression models adjust for multiple variables simultaneously, isolating the effect of the exposure on the outcome

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is an interaction term in regression analysis?

A

An interaction term represents the combined effect of two variables on an outcome, used to test for effect modification

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the steps for preparing data for confounding and effect modification analysis?

A
  1. Check and recode variables as needed
  2. Categorise variables if required
  3. Verify the distribution and associations among variables
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Why is coding consistency important in statistical analysis?

A

Consistent coding ensures accurate interpretation and analysis, especially when categorising variables or dealing with missing data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How can graphical tools aid in identifying effect modification?

A

Graphs, such as stratified plots, visually demonstrate differences in relationships across subgroups, highlighting potential effect modification

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the difference between confounding and effect modification?

A
  • Confounding distorts the true relationship between exposure and outcome
  • Effect modification indicates that the relationship itself changes based on a third variable
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Why is testing for homogeneity important in stratified analyses?

A

Homogeneity tests assess whether the effect size is consistent across strata, helping to identify confounding or effect modification

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are the potential pitfalls of adjusting for variables on the causal pathway?

A

Adjusting for variables on the causal pathway can underestimate or eliminate the true effect of the exposure on the outcome

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

how can variables be recoded into binary form (0/1) in Stata?

A

<gen>
<recode> (1=0) (2=1)
<label define newvar01 0 "no" 1 "yes">
<label>
</label></recode></gen>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What command estimates ORs?

A

<tabodds var1 var2, or>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How do you stratify odds ratios by a third variable?

A

<cc outcome exposure, by(strata)>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do you generate a histogram by group?

A

<histogram varname, by(group)>

17
Q

What command runs a logistic regression model?

A

<logistic>
</logistic>

18
Q

How can you include categorical predictors in regression models?

A

use the i. prefix for categorical variables:

<logistic>
</logistic>

19
Q

What command generates a linear regression model?

A

<regress>
</regress>

20
Q

How can interaction terms be included in regression?

A

<regress outcome predictor1##predictor2>

21
Q

How do you store regression models in memory for comparison?

A

<est>
</est>

22
Q

What command performs a likelihood ratio test between two models?

A

<lrtest>
</lrtest>

23
Q

How do you calculate summary statistics for a variable by group?

A

<bysort group1: summarize varname>

24
Q

What commands plot linear relationships?

A

<twoway (lfit outcome predictor>
<twoway (lfit outcome predictor if group1) (lfit outcome predictor if group2>

25
Q

What command labels variables and values?

A

<label variable varname “label”>
<label define labelname value “label”>
<label></label>

26
Q

How do you formally test for effect modification?

A
  1. Run a simple regression model with outcome and explanatory variables and store it
  2. Run a more complex model with ‘##’ to indicate effect modification for a variable i.e <regress cfex1 c.dhager##i.sex01> and store it
  3. Run a likelihood ratio test to see if the complex model with the effect modifier gives a better fit for the data than the simple model (H0: the complex model does not describe the data better than the simple model i.e., the association between exec function and age is not modified by sex)
  4. If no evidence against H0, we use the simple model to describe the association