Dear Statalist users
I am currently working on a study protocol for a stratified randomised controlled trial (RCT) with a binary outcome (0/1) and a binary exposure (0/1).
As suggested by Kahan and Morris (DOI: 10.1002/sim.4431) the primary analysis in such a RCT should be adjusted on the (categorical) stratification variable (=stratification_var, 0-4 in my case).
Thus, my primary approach is simple; use a logistic regression adjusted for the stratification variable, i.e.
However, there are multiple authors (e.g. Austin 10.1016/j.jclinepi.2008.11.004) that recommend to use adjusted risk ratios (ARR) and risk differences (ARD) as effect sizes in such a RCT and not the odds ratio (OR) as the "OR is difficult to interpret and only approximates the ARR".
Fortunately, there is a nice user written command - adjrr - by Norton, Miller and Kleinman (https://www.stata-journal.com/articl...article=st0306) which can be used after a logistic regression model to calculate the ARR and ARD.
Alternatively, I found this beautiful link from UCLA (https://stats.oarc.ucla.edu/stata/fa...ohort-studies/) to estimate the ARR using GLM
[In my opinion, the ARD can easily be calulated using
after the logistic regression command.]
However, the results between the approaches to calculate the ARR with 95% CI differ a bit. Thus, I wonder if you have any advice
Thank you very much for your valuable thoughts on this problem.
Martin
I am currently working on a study protocol for a stratified randomised controlled trial (RCT) with a binary outcome (0/1) and a binary exposure (0/1).
As suggested by Kahan and Morris (DOI: 10.1002/sim.4431) the primary analysis in such a RCT should be adjusted on the (categorical) stratification variable (=stratification_var, 0-4 in my case).
Thus, my primary approach is simple; use a logistic regression adjusted for the stratification variable, i.e.
Code:
logistic outcome exposure i.stratification_var
Fortunately, there is a nice user written command - adjrr - by Norton, Miller and Kleinman (https://www.stata-journal.com/articl...article=st0306) which can be used after a logistic regression model to calculate the ARR and ARD.
Alternatively, I found this beautiful link from UCLA (https://stats.oarc.ucla.edu/stata/fa...ohort-studies/) to estimate the ARR using GLM
[In my opinion, the ARD can easily be calulated using
Code:
margins r.exposure
However, the results between the approaches to calculate the ARR with 95% CI differ a bit. Thus, I wonder if you have any advice
- if the ARR/ARD is preferred over OR in this scenario and
- if the ARR is preferred, what is the best way to calculate it: using i) the - adjrr - command, ii) a relative risk estimation by log-binomial regression, or iii) a relative risk estimation by Poisson regression with robust error variance?
Thank you very much for your valuable thoughts on this problem.
Martin
Comment