← All posts

What Is Collapsibility in Clinical Statistics?

Clinical Epidemiology ResearchUniqcret doctor knowledgesMethodology and Research DesignData Analytics or Statistics

Collapsibility is a property of effect measures that determines whether the measure changes when you (statistically) adjust or don’t adjust for covariates, even in the absence of confounding.

Collapsible Measure

Risk Difference Note
\( RD_{\text{adjusted}} = RD_{\text{crude}} \quad \text{(if no confounding)} \)

Non-Collapsible Measure

Odds Ratio Note
\( OR_{\text{adjusted}} \ne OR_{\text{crude}} \quad \text{(even if no confounding)} \)

🧪 Illustrative Stata Examples

Crude vs Adjusted (Collapsible case)

regress BDI6mo treat
regress BDI6mo treat BDI0 age sex

Crude vs Adjusted (Non-Collapsible case)

logistic outcome treat
logistic outcome treat BDI0 age sex

🔁 What Is Marginalisation?

Marginalisation is the process of recovering population-average (marginal) effects from conditional (adjusted) regression models.

In other words:

“Given I fitted a logistic model adjusting for covariates, what is the overall effect of treat averaged over the covariate distribution?”

📦 In Stata:

logistic outcome treat age sex
margins r.treat, predict(pr)   // Predicted risk
margins r.treat, predict(or)   // Marginal OR
marginsplot                    // Visualize marginal effects

This tells you: “On average, what is the risk/OR if everyone received the treatment vs. control?”


🔑 Summary Table

ConceptMeaning
CollapsibleEffect estimate doesn't change with covariate adjustment (e.g., RD)
Non-collapsibleEffect changes due to mathematical form, not confounding (e.g., OR)
MarginalisationTransforming model-based (conditional) effects into population averages


🧠 Secret Insight from CECS Logic

Comments

No comments yet. Be the first to share your thoughts.

Sign in to comment