# associationgreek_gods_condrand %>% group_by(A) %>% count(Y_obs) %>% mutate( denominator = sum(n), risk = round(n/sum(n), digits = 2) ) %>% filter(Y_obs == 1)
## # A tibble: 2 x 5## # Groups: A [2]## A Y_obs n denominator risk## <dbl> <dbl> <int> <int> <dbl>## 1 0 1 3 7 0.43## 2 1 1 7 13 0.54
# when controlling confounding by L using stratificationgreek_gods_condrand %>% group_by(L, A) %>% count(Y_obs) %>% mutate( denominator = sum(n), risk = round(n/sum(n), digits = 2) ) %>% filter(Y_obs == 1)
## # A tibble: 4 x 6## # Groups: L, A [4]## L A Y_obs n denominator risk## <dbl> <dbl> <dbl> <int> <int> <dbl>## 1 0 0 1 1 4 0.25## 2 0 1 1 1 4 0.25## 3 1 0 1 2 3 0.67## 4 1 1 1 6 9 0.67
greek_gods_condrand %>% group_by(L) %>% count(A) %>% mutate( denominator = sum(n), pr_A = round(n/sum(n), digits = 2) ) %>% filter(A == 1)
## # A tibble: 2 x 5## # Groups: L [2]## L A n denominator pr_A## <dbl> <dbl> <int> <int> <dbl>## 1 0 1 4 8 0.5 ## 2 1 1 9 12 0.75
Ya
"Hypothetical intervention" must be linked to actually observed version of treatment, otherwise mathematical notation of consistency Pr[Ya=1|A=1]=Pr[Y=1|A=1] cannot be translated into the "real world" and no causal inference is possible
Data granularity
"Hypothetical intervention" must be linked to actually observed version of treatment, otherwise mathematical notation of consistency Pr[Ya=1|A=1]=Pr[Y=1|A=1] cannot be translated into the "real world" and no causal inference is possible
Data granularity
When dealing with treatments with multiple versions --> assuming treatment variation irrelevance
"Hypothetical intervention" must be linked to actually observed version of treatment, otherwise mathematical notation of consistency Pr[Ya=1|A=1]=Pr[Y=1|A=1] cannot be translated into the "real world" and no causal inference is possible
Data granularity
When dealing with treatments with multiple versions --> assuming treatment variation irrelevance
Transparency
Causal effect
Imagine a (hypothetical) randomized experiment to quantify it
Causal effect
Imagine a (hypothetical) randomized experiment to quantify it
Components of the "protocol"
Causal effect
Imagine a (hypothetical) randomized experiment to quantify it
Components of the "protocol"
Oversimplified analysis example
44% of U.S. adults could have been obese by 2030, compared to 35.7% in 2012
BMI used to measure degree of obesity is a proxy for it
Obesity is not well-defined "intervention" --> consistency does not hold
BMI used to measure degree of obesity is a proxy for it
Obesity is not well-defined "intervention" --> consistency does not hold
Ill-defined intervention may undermine the exchangeability logic
BMI used to measure degree of obesity is a proxy for it
Obesity is not well-defined "intervention" --> consistency does not hold
Ill-defined intervention may undermine the exchangeability logic
Ill-defined intervention may may threaten positivity
Practical interventions may have side effects --> yet, are deemed well-defined
Root of obesity being ill-defined "intervention"
Practical interventions may have side effects --> yet, are deemed well-defined
Root of obesity being ill-defined "intervention"
At the same time, the quantity Pr(mortality|do(obesity)) (notation of PO using do-operator; means the same as Pr[mortalityobesity=1|obesity=1]) describes an intervention set by nature (via complex processes)
Practical interventions may have side effects --> yet, are deemed well-defined
Root of obesity being ill-defined "intervention"
At the same time, the quantity Pr(mortality|do(obesity)) (notation of PO using do-operator; means the same as Pr[mortalityobesity=1|obesity=1]) describes an intervention set by nature (via complex processes)
Causal effects of anatomical/physiological conditions may be described in terms of their presence/absence not necessarily via the means they can be manipulated
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |