Notifications
Clear all
STATA Programming
1
Posts
1
Users
0
Reactions
54
Views
Topic starter
The Elixhauser Comorbidity Index and Charlson Comorbidity Index (CCI) are both used to measure comorbidity burden in health research, but they differ in their methodology, scope, and use in Stata.
Strengths:
- Simple and widely used in survival analysis.
- Strongly correlates with mortality risk.
- Frequently used in ICD-9 and ICD-10-coded hospital data.
replace cci = cci + 1 if inlist(diagnosis, "I10", "E11") // Hypertension, Diabetes (score: 1)
replace cci = cci + 2 if inlist(diagnosis, "C34", "C50") // Cancer (score: 2)
replace cci = cci + 3 if inlist(diagnosis, "I25") // Myocardial infarction (score: 3
Limitations:
- Limited number of conditions (19).
- Focuses on mortality prediction rather than other health outcomes.
1. Charlson Comorbidity Index (CCI)
- Developed to predict mortality based on 19 comorbid conditions.
- Weights are assigned to each condition based on mortality risk.
- Often used in risk adjustment models for clinical outcomes.
- Can be calculated using Stata’s
charlson
command (if installed) or coded manually.
2. Elixhauser Comorbidity Index
- Consists of 31 comorbid conditions, providing a broader assessment.
- Does not have an inherent weighting system; weights can be applied based on different models (e.g., van Walraven's weighted score).
- Generally preferred for hospitalization outcomes like length of stay and readmission.
- In Stata, the
elixhauser
command (from user-written packages) or manual coding is used.
Differences in Stata Implementation
Feature Charlson Index ( charlson
)Elixhauser Index ( elixhauser
)Number of conditions 19 31 Weighting Predefined weights No standard weights (van Walraven weights used often) Purpose Predicts mortality Predicts hospitalization outcomes Stata command charlson
(user-written)elixhauser
(user-written)Stata Commands
1.Charlson Comorbidity Index
Posted : 05/03/2025 9:07 am