Hello! I am evaluating the association of "treatment" with "outcome". My cohort consists of patients "typeA" and "typeB".
I originally ran a multivariable logistic regression adjusting for relevant covariates, with the output below:
I interpreted this to mean that treatment is associated with reduced odds of outcome, while typeA is linked with greater odds of outcome.
However, I decided to run this regression in subgroup analysis of only typeA OR typeB patients. Among typeA patients, my results are comparable as what I see in the entire cohort:
However, among patients with typeB, I see the following output:
I am confused how to interpret this. My subgroup analysis among typeB patients appears to suggest there is no statistically significant treatment effect. However, when I look at the entire cohort and independently adjust for type and treatment, both remain linked with reduced odds of outcome. Further, the interaction term between type and treatment is not significant.
If anyone has guidance on how I can best interpret and approach this problem, I would be greatly appreciative. Thank you!
I originally ran a multivariable logistic regression adjusting for relevant covariates, with the output below:
Code:
----------------------------------------------------------------------------------------- outcome | Odds Ratio Std. Err. z P>|z| [95% Conf. Interval] ------------------------+---------------------------------------------------------------- typeA | .5341908 .0165037 -20.29 0.000 .502804 .5675368 treatment | 1.301675 .0708633 4.84 0.000 1.169938 1.448245
However, I decided to run this regression in subgroup analysis of only typeA OR typeB patients. Among typeA patients, my results are comparable as what I see in the entire cohort:
Code:
----------------------------------------------------------------------------------------- outcome | Odds Ratio Std. Err. z P>|z| [95% Conf. Interval] ------------------------+---------------------------------------------------------------- typeA | 1 (omitted) treatment | 1.354458 .083596 4.92 0.000 1.200135 1.528625
However, among patients with typeB, I see the following output:
Code:
----------------------------------------------------------------------------------------- outcome| Odds Ratio Std. Err. z P>|z| [95% Conf. Interval] ------------------------+---------------------------------------------------------------- typeB | 1 (omitted) treatment | 1.146505 .1349509 1.16 0.245 .9102989 1.444002
If anyone has guidance on how I can best interpret and approach this problem, I would be greatly appreciative. Thank you!
Comment