| car_olt_score | R Documentation |
Structures the inputs for the CAR-OLT risk score, a tool designed to predict the 1-year risk of major adverse cardiovascular events (MACE) following orthotopic liver transplantation. The score uses 12 pre-transplant characteristics to stratify candidates, helping to identify those who may require further cardiac testing versus those (Low Risk, score <= 23) who may proceed safely.
car_olt_score(age, sex, race, employment_status, education_level,
history_hcc, diabetes, heart_failure, atrial_fibrillation,
pulmonary_hypertension, systemic_hypertension, respiratory_failure)
age |
Numeric. Recipient age in years. |
sex |
String. "Male" or "Female". |
race |
String. Recipient race (e.g., "White", "Black", "Other"). |
employment_status |
String. "Working" or "Not Working". |
education_level |
String. "College" or "High School or Less". |
history_hcc |
Numeric (0 or 1). History of Hepatocellular Carcinoma. (1 = Yes). |
diabetes |
Numeric (0 or 1). History of Diabetes Mellitus. (1 = Yes). |
heart_failure |
Numeric (0 or 1). History of Heart Failure. (1 = Yes). |
atrial_fibrillation |
Numeric (0 or 1). History of Atrial Fibrillation. (1 = Yes). |
pulmonary_hypertension |
Numeric (0 or 1). History of Pulmonary Hypertension. (1 = Yes). |
systemic_hypertension |
Numeric (0 or 1). History of Systemic Hypertension. (1 = Yes). |
respiratory_failure |
Numeric (0 or 1). Respiratory failure (on ventilator) at time of transplant. (1 = Yes). |
A list containing:
Inputs |
The formatted list of patient risk factors. |
Risk_Threshold |
Interpretation based on the published low-risk cutoff (<= 23). |
VanWagner LB, Ning H, Whitsett M, et al. A point-based prediction model for cardiovascular risk in orthotopic liver transplantation: The CAR-OLT score. Hepatology. 2017;66(6):1968-1979. doi:10.1002/hep.29329
# Example: Patient structure
car_olt_score(55, "male", "white", "working", "college", 0, 1, 0, 0, 0, 1, 0)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.