Skip to main content
Advertisement
Browse Subject Areas
?

Click through the PLOS taxonomy to find articles in your field.

For more information about PLOS Subject Areas, click here.

  • Loading metrics

Robust prognostic prediction model developed with integrated biological markers for acute myocardial infarction

  • Masahiro Nishi ,

    Roles Conceptualization, Data curation, Formal analysis, Investigation, Writing – original draft

    nishim@koto.kpu-m.ac.jp

    Affiliation Department of Cardiovascular Medicine, Graduate School of Medical Science, Kyoto Prefectural University of Medicine, Kyoto, Japan

  • Eiichiro Uchino,

    Roles Formal analysis, Writing – review & editing

    Affiliation Department of Biomedical Data Intelligence, Graduate School of Medicine, Kyoto University, Kyoto, Japan

  • Yasushi Okuno,

    Roles Formal analysis, Writing – review & editing

    Affiliation Department of Biomedical Data Intelligence, Graduate School of Medicine, Kyoto University, Kyoto, Japan

  • Satoaki Matoba

    Roles Conceptualization, Investigation, Supervision, Writing – review & editing

    Affiliation Department of Cardiovascular Medicine, Graduate School of Medical Science, Kyoto Prefectural University of Medicine, Kyoto, Japan

Abstract

Commonly used prediction methods for acute myocardial infarction (AMI) were created before contemporary percutaneous coronary intervention was recognized as the primary therapy. Although several studies have used machine learning techniques for prognostic prediction of patients with AMI, its clinical application has not been achieved. Here, we developed an online application tool using a machine learning model to predict in-hospital mortality in patients with AMI. A total of 2,553 cases of ST-elevation AMI were assigned to 80% training subset for cross validation and 20% test subset for model performance evaluation. We implemented random forest classifier for the binary classification of in-hospital mortality. The selected best feature set consisted of ten clinical and biological markers including max creatine phosphokinase, hemoglobin, heart rate, creatinine, systolic blood pressure, blood sugar, age, Killip class, white blood cells, and c-reactive protein. Our model achieved high performance: the area under the curve of the receiver operating characteristic curve for the test subset, 0.95: sensitivity, 0.89: specificity, 0.91: precision, 0.43: accuracy, 0.91 respectively, which outperformed common scoring methods. The freely available application tool for prognostic prediction can contribute to risk triage and decision-making in patient-centered modern clinical practice for AMI.

Introduction

Myocardial infarction is still a major critical disease with high mortality and morbidity, although coronary reperfusion therapy has improved the prognosis [1]. Several risk scoring methods have been proposed to predict short-and long-term mortality in patients with acute myocardial infarction (AMI) and have described different biological predictive factors to date [27]. Commonly used scoring methods, such as the TIMI risk index and GRACE score, were created before contemporary percutaneous coronary intervention (PCI) was recognized as a fundamental therapy. In addition, other proposed models involve impractical issues owing to their inaccuracy or cumbersome method. Accurate prognostic prediction model in modern clinical practice for AMI is crucial, given its higher mortality compared to other common diseases.

Machine learning (ML) techniques in medical science have been shown to successfully overcome the limitations of predictors that rely on a single feature by combining different types of features even in a nonlinear fashion [8, 9], because none of the predictive factors act in isolation and therefore, cannot independently produce precise prediction. ML has the potential to improve the predictive accuracy for the prognosis of cardiovascular disease [10, 11]. In-hospital death caused by the complication of AMI, such as life-threatening arrhythmia, myocardial rupture, and severe heart failure, is difficult to precisely predict by clinicians. Several studies have used ML techniques for prognostic prediction of patients with myocardial infarction [1215]; however, its clinical application has not been achieved due to its low versatility and feasibility. In the present study, we developed a state-of-the-art application tool for a prognostic prediction model with integrated biological markers for in-hospital mortality in patients with AMI.

Methods

Patient data description

The AMI-Kyoto Multi-Center Risk Study, a large multicenter observational study in which 23 collaborating hospitals in Japan, collected demographic, clinical background, laboratory, procedural, angiographic, and outcome data of patients with AMI. It was established in 2000 to analyze the data and create an emergency hospital network for heart diseases in Kansai district in Japan [1618]. Indication for PCI and pharmacological approaches are similar because all the hospitals are registered as training facility of Japanese Circulation Society and conduct the guideline-based standard management. Data were collected on admission except for prognosis, max creatine phosphokinase (CPK), and procedural findings. CPK was measured on admission and every 6 h after PCI until it peaked. A total of 3,497 consecutive patients with AMI who were admitted at the AMI Kyoto Multi-Center Risk Study Group Hospitals from January 2009 to December 2015 were enrolled in the study. Power calculation was not performed, given that machine learning-based prediction does not evaluate statistical significance. Cases with out-of-hospital cardiac arrest, non-ST-elevation AMI (STEMI), without coronary angiography (CAG), and missing prognosis were excluded, and 2,553 cases were analyzed.

After informed consent to participate in the AMI-Kyoto Multi-Center Risk Study was confirmed by each patient, all in-hospital data were transmitted to the center located at the Department of Cardiology in Kyoto Prefectural University of Medicine for the analysis. Because this study corresponds to an observational study that uses only existing data from medical records, we provided verbal informed consent without the agreement document. We provided a record of the informed consent to the electronic medical recording system. After each institution approved participation in the study, the study was approved by the ethics committee of Kyoto Prefectural University of Medicine as a general organization (approval number ERB-C-1865). The study conformed to the principles outlined in the Declaration of Helsinki.

Model description

In-hospital mortality was set as the target, and a total of 32 clinical and biological markers were set as the features of prediction modelling. We implemented random forest classifier (RF) for the binary classification of in-hospital mortality using the scikit-learn 0.24.1 package [19] in Python 3.7.4. We split the dataset using the train_test_split function which randomly partitions a dataset into training and test subsets with test size = 0.2, to generate the training (80%) and test (20%) datasets. Model performance was evaluated using both the training and test subsets. The RFE (recursive feature elimination) function was used for the best feature selection in the training dataset, where RF was deployed as an estimator. As a result, ten features, such as max CPK, hemoglobin (Hb), heart rate (HR), creatinine (Cr), systolic blood pressure (BPs), blood sugar (BS), age, Killip class, white blood cells (WBC), and c-reactive protein (CRP), were selected for the best feature set. The feature importance for all features and the selected ten features were calculated by mean decrease impurity method using feature_importances_ function. For tuning RF with the best hyperparameters, we used the GridSearchCV function to the training subset with 5-fold cross validation. A total of 960 RF models were evaluated with different combinations of n_estimators, max_depth, and min_samples_split hyperparameters. Consequently, we selected a model with n_estimators = 200, max_depth = 6, and min_samples_split = 5 hyperparameters which showed the highest area under the curve (AUC) = 0.90. Using these hyperparameters, the final model was trained with the whole training subset. The KOTOMI risk calculator is available in the Heroku web application platform (https://kotomi-calculator.herokuapp.com).

We visualized the receiver operating characteristic (ROC) and precision-recall curves and calculated the AUC for the test subset using the Precrec package [20] in R3.6.1 [21]. We determined the optimal threshold of the model, which discriminates between death and survival using Youden’s index method using the pROC package [22]. The confusion matrix, F1-score, sensitivity, specificity, precision, and accuracy were also evaluated to compare the model performance with the TIMI risk index and GRACE score.

Results

We obtained sample data of 2,553 patients with STEMI undergoing CAG from a total of 3,497 participants (S1 Fig and S1 Appendix). Data were collected on admission except for prognosis, CPK, and procedural findings (Table 1). Of these, 2,358 survived and 195 died during hospitalization. Median (IQR) age for the survivors and deceased group was 69 (61–78) and 81 (73–86); body mass index (BMI) was 23.1 (20.9–25.4) and 22.0 (19.4–24.7); BPs was 132 (112–154) and 106 (80–134); HR was 73 (60–88) and 83 (61–105); WBC was 9500 (7600–11900) and 10320 (7855–13915); Hb was 14.1 (12.7–15.4) and 12.2 (10.5–14.0); BS was 153 (128–199) and 201 (147–279); max CPK was 1814 (832–3376) and 3350 (1346–6924); Cr was 0.8 (0.7–1.0) and 1.2 (0.9–1.6); CRP was 0.2 (0.1–0.5) and 0.7 (0.1–3.8); GRACE score was 158 (137–180) and 219 (194–241); and TIMI risk index was 25.6 (18.3–35.2) and 47.8 (33.9–65.2). Characteristics in the survival and deceased groups were female: 25.7% vs 45.1%; hypertension: 61.9% vs 69.1%; diabetes: 30.8% vs 35.4%; dyslipidemia: 44.1% vs 34.9%; smoking: 41.8% vs 21.1%, respectively. Other characteristics are shown in Table 1.

An overview of the application development of the prognostic prediction model in clinical practice for patients with STEMI is presented in Fig 1. A total of 2,553 cases were randomly divided into training (80%) and test (20%) subsets with similar characteristics (S1 Table). The feature importance for all features was calculated using the RF as a model estimator (Fig 2A). Most of the highly important features were composed of basic clinical and biological markers such as vital signs and common blood markers, whereas the findings of CAG and PCI or emergency system-dependent factors exhibited a lower impact on in-hospital mortality. The AUC for each feature number was evaluated for training and test subsets in the RF, XGB classifier, and logistic regression (Fig 2B). Eventually, ten features (max CPK, Hb, HR, Cr, BPs, BS, age, Killip class, WBC, and CRP) were selected for the feature set to establish the RF model because of its high adaptability for the training subset (Fig 2B and 2C). Thus, an easily accessible online application tool was developed to calculate the in-hospital mortality risk in the patients with STEMI according to the programming code for the prediction model, then we called it “KOTOMI” after AMI-Kyoto Multi-Center Risk Study (Fig 1 and S2 Fig). The KOTOMI risk calculator is available in a web application platform (https://kotomi-calculator.herokuapp.com).

thumbnail
Fig 1. Overview of development of prognostic prediction model for acute myocardial infarction.

A total of 2,553 cases were divided into training (80%) and test (20%) subsets. A random forest classifier was trained on several clinical and biological features on the training subset using 5-fold cross validation (CV) to predict in-hospital mortality in patients with ST-elevation acute myocardial infarction (STEMI). The resulting trained model with the best hyperparameters was evaluated using various performance metrics using the test subset. The online application tool to predict in-hospital mortality risk in patients with STEMI was developed according to the programming code of the model.

https://doi.org/10.1371/journal.pone.0277260.g001

thumbnail
Fig 2. Feature selection of prognostic prediction model for acute myocardial infarction.

A, Feature importance for all features. B, Area under the curve (AUC) for each feature numbers for training and test subsets in random forest classifier, XGB classifier, and logistic regression. C, Feature importance for selected best feature set.

https://doi.org/10.1371/journal.pone.0277260.g002

To evaluate the model performance of KOTOMI, we compared various performance metrics of KOTOMI with common risk scoring methods such as the GRACE score and TIMI risk index on the test subset. The AUC of the ROC curve and area under the precision-recall curve (AUPRC) were calculated. The AUCs of KOTOMI, GRACE, and TIMI were 0.95, 0.88, and 0.84, respectively (Fig 3A). The AUPRC of the KOTOMI, GRACE, and TIMI models were 0.66, 0.54, and 0.36, respectively (S3 Fig). The confusion matrix of each model was determined by the optimal threshold of the model, which discriminates between death and survival by Youden’s index method for the ROC curve (Fig 3B). The sensitivities of KOTOMI, GRACE, and TIMI were 0.89, 0,89, and 0.78; specificity was 0.91, 0.81, and 0.79; precision was 0.43, 0.27, and 0.23; F1-Score was 0.58, 0.42, and 0.35; accuracy was 0.91, 0.82, and 0.79, respectively (Fig 3C). Taken together, the KOTOMI model outperformed the commonly used risk scoring methods. Calibration plots showed that high fractions of positives tend to have lower probability than perfect calibration. In the present study, we used the original model for risk calculation (S4 Fig).

thumbnail
Fig 3. Model performance evaluation for test subset.

A, Receiver operating characteristic (ROC) curve and its area under the curve (AUC) of KOTOMI, GRACE, and TIMI. B, Confusion matrix of each model was determined by the optimal threshold of the model, which discriminates death and survival by Youden’s index method for the ROC curve. C, Sensitivity, specificity, precision, F1-Score, and accuracy for KOTOMI, GRACE, and TIMI were calculated based on the confusion matrix.

https://doi.org/10.1371/journal.pone.0277260.g003

Discussion

In the present study, we developed a useful tool in which the KOTOMI model was applied to calculate the in-hospital mortality risk in patients with STEMI. The KOTOMI model with high accuracy and performance outperformed common risk scoring methods, such as the TIMI risk index and GRACE score. The development of a precise prediction model for AMI with ML technique could have a significant impact on modern clinical practice for AMI because it can contribute to decision-making in patient-centered medicine.

We selected basic clinical and biological markers as the feature set for prognostic prediction. The most important feature was the max CPK in all features. Max CPK is a prognostic predictor for AMI and reflects infarct size [23]. Reperfusion therapy is known to increase the absolute max CPK and quicken its peak time earlier than 24 h after the onset [24]. CPK needs to be monitored until peak out after PCI; thereafter, the KOTOMI model can be applied for prognostic prediction. Hb was also an important feature. Indeed, anemia is a prognostic predictor for AMI [25], which can be improved in daily clinical practice, although the optimal transfusion strategy for anemia in patients with AMI is undefined [26, 27]. Imaging data, such as echocardiogram or cardiac magnetic resonance, may be used as additional features for the prediction. Left ventricular ejection fraction (LVEF) was removed from the patient’s characteristics because of the large number of missing values. LVEF is a powerful individual predictive factor for AMI [28, 29], whereas adding LVEF to the GRACE score did not convey significant prognostic information [30]. The selected features may need to be updated in the future using the contemporary data according to the progress of the standard management for acute myocardial infarction, followed by the update of its application tool. Interestingly, the technical outcomes of catheterization therapy and emergency medical service-related factors had a lower impact than the selected features for the prediction model. This suggests that researchers should focus on primary prevention and amelioration of cardiac damage at the disease onset to improve the prognosis of AMI, given that catheterization techniques and emergency systems have been improved.

The KOTOMI model outperformed the commonly used risk scoring methods. The TIMI risk index is a widely used simple predictive score for short-and long-term mortality in patients with STEMI using three factors: age, HR, and BPs [5, 31]. Subdividing the TIMI risk index by laboratory blood examination, including WBC, Hb, CRP, Cr, and BS levels, reinforces its accuracy [16]. However, the risk score was created among patients treated with thrombolytic therapy before PCI was recognized as a primary therapy for AMI. The GRACE score uses eight risk factors including age, Killip class, BPs, ST-segment deviation, cardiac arrest during presentation, Cr, positive initial cardiac enzyme findings, and HR. It predicts in-hospital death and six-month death rate in patients with acute coronary syndrome [6, 32]. The GRACE score maintains durable performance in contemporary practice for AMI [30, 33]. Other risk scores such as PAMI [34], Zwolle [35], and CADILLAC [28] have been proposed to date. To our knowledge, these scoring methods are not commonly used compared with the TIMI risk index and GRACE score because of their inaccuracy or cumbersome method. Several studies have used ML techniques for prognostic prediction of AMI [1215]; however, their clinical application has not been achieved due to its low versatility and feasibility.

The present study has several limitations. The KOTOMI model was created using Japanese participants. Therefore, the model performance comparing with TIMI risk index and GRACE will need to be evaluated in larger cohorts of various races. The model was created using the data between January 2009 to December 2015. Validation for current data will be necessary for further study. To enhance the model’s applicability, external validation should be performed. The present study was designed to predict only in-hospital mortality, given that the nature of the myocardial infarction incurs critical consequences in the short term and the long-term prognosis implies other chronic disease conditions. Troponin, which is a standard biomarker for diagnosis of STEMI and associated with its severity, CK-MB, BNP and NT-proBNP were not measured in the study.

In conclusion, we developed a state-of-the-art tool for prognostic prediction using the ML technique in patients with STEMI. The developed KOTOMI model can contribute to risk triage and decision-making in patient-centered modern clinical practice for AMI.

Supporting information

S1 Table. Characteristics of patients in training and test subsets.

https://doi.org/10.1371/journal.pone.0277260.s001

(DOCX)

S1 Fig. Flow diagram of sample collection and filtering process.

https://doi.org/10.1371/journal.pone.0277260.s002

(DOCX)

S2 Fig. KOTOMI risk calculator for in-hospital mortality risk in patients with acute myocardial infarction.

Online application tool of KOTOMI model to predict in-hospital mortality risk in patients with ST-elevation acute myocardial infarction (STEMI) was developed in Heroku web application platform according to the programming code of the model. An application programming interface (API) that returns the prediction results was tested to show the correct behavior for a subset of records in the dataset.

https://doi.org/10.1371/journal.pone.0277260.s003

(DOCX)

S3 Fig. Model performance illustrated by precision-recall curve for test subset in KOTOMI, GRACE score, and TIMI risk index.

AUPRC indicates area under precision-recall curve.

https://doi.org/10.1371/journal.pone.0277260.s004

(DOCX)

S4 Fig. Model calibration.

Calibration plots were depicted for original model (left panel) and model calibrated by Isotonic Regression (right panel) using training data (A) and test data (B). Samples were divided into ten bins.

https://doi.org/10.1371/journal.pone.0277260.s005

(DOCX)

Acknowledgments

The authors thank all the members of AMI-Kyoto Multi-Center Risk Study Group for collecting data.

References

  1. 1. Benjamin EJ, Blaha MJ, Chiuve SE, Cushman M, Das SR, Deo R, et al. Heart Disease and Stroke Statistics-2017 Update: A Report From the American Heart Association. Circulation. 2017;135(10):e146–e603. Epub 2017/01/27. pmid:28122885; PubMed Central PMCID: PMC5408160.
  2. 2. Morrow DA, Antman EM, Charlesworth A, Cairns R, Murphy SA, de Lemos JA, et al. TIMI risk score for ST-elevation myocardial infarction: A convenient, bedside, clinical score for risk assessment at presentation: An intravenous nPA for treatment of infarcting myocardium early II trial substudy. Circulation. 2000;102(17):2031–7. Epub 2000/10/25. pmid:11044416.
  3. 3. Antman EM, Cohen M, Bernink PJ, McCabe CH, Horacek T, Papuchis G, et al. The TIMI risk score for unstable angina/non-ST elevation MI: A method for prognostication and therapeutic decision making. JAMA. 2000;284(7):835–42. Epub 2000/08/11. pmid:10938172.
  4. 4. Morrow DA, Antman EM, Parsons L, de Lemos JA, Cannon CP, Giugliano RP, et al. Application of the TIMI risk score for ST-elevation MI in the National Registry of Myocardial Infarction 3. JAMA. 2001;286(11):1356–9. Epub 2001/09/19. pmid:11560541.
  5. 5. Morrow DA, Antman EM, Giugliano RP, Cairns R, Charlesworth A, Murphy SA, et al. A simple risk index for rapid initial triage of patients with ST-elevation myocardial infarction: an InTIME II substudy. The Lancet. 2001;358(9293):1571–5. pmid:11716882
  6. 6. Granger CB, Goldberg RJ, Dabbous O, Pieper KS, Eagle KA, Cannon CP, et al. Predictors of hospital mortality in the global registry of acute coronary events. Arch Intern Med. 2003;163(19):2345–53. Epub 2003/10/29. pmid:14581255.
  7. 7. Fox KAA, Poole-Wilson P, Clayton TC, Henderson RA, Shaw TRD, Wheatley DJ, et al. 5-year outcome of an interventional strategy in non-ST-elevation acute coronary syndrome: the British Heart Foundation RITA 3 randomised trial. The Lancet. 2005;366(9489):914–20. pmid:16154018
  8. 8. Topol EJ. High-performance medicine: the convergence of human and artificial intelligence. Nat Med. 2019;25(1):44–56. Epub 2019/01/09. pmid:30617339.
  9. 9. Rajkomar A, Dean J, Kohane I. Machine Learning in Medicine. N Engl J Med. 2019;380(14):1347–58. Epub 2019/04/04. pmid:30943338.
  10. 10. Mortazavi BJ, Downing NS, Bucholz EM, Dharmarajan K, Manhapra A, Li SX, et al. Analysis of Machine Learning Techniques for Heart Failure Readmissions. Circ Cardiovasc Qual Outcomes. 2016;9(6):629–40. Epub 2017/03/07. pmid:28263938; PubMed Central PMCID: PMC5459389.
  11. 11. Myers PD, Scirica BM, Stultz CM. Machine Learning Improves Risk Stratification After Acute Coronary Syndrome. Sci Rep. 2017;7(1):12692. Epub 2017/10/06. pmid:28978948; PubMed Central PMCID: PMC5627253.
  12. 12. Shouval R, Hadanny A, Shlomo N, Iakobishvili Z, Unger R, Zahger D, et al. Machine learning for prediction of 30-day mortality after ST elevation myocardial infraction: An Acute Coronary Syndrome Israeli Survey data mining study. Int J Cardiol. 2017;246:7–13. Epub 2017/09/05. pmid:28867023.
  13. 13. Khera R, Haimovich J, Hurley NC, McNamara R, Spertus JA, Desai N, et al. Use of Machine Learning Models to Predict Death After Acute Myocardial Infarction. JAMA Cardiol. 2021. Epub 2021/03/11. pmid:33688915.
  14. 14. Xiang Li HL, Jingang Yang, Guotong Xie, Meilin Xu, Yuejin Yang. Using Machine Learning Models to Predict In-Hospital Mortality for ST-Elevation Myocardial Infarction Patients. Studies in Health Technology and Informatics. 2017;245:476–80. pmid:29295140
  15. 15. Mansoor H, Elgendy IY, Segal R, Bavry AA, Bian J. Risk prediction model for in-hospital mortality in women with ST-elevation myocardial infarction: A machine learning approach. Heart Lung. 2017;46(6):405–11. Epub 2017/10/11. pmid:28992993.
  16. 16. Yanishi K, Nakamura T, Nakanishi N, Yokota I, Zen K, Yamano T, et al. A Simple Risk Stratification Model for ST-Elevation Myocardial Infarction (STEMI) from the Combination of Blood Examination Variables: Acute Myocardial Infarction-Kyoto Multi-Center Risk Study Group. PLoS One. 2016;11(11):e0166391. Epub 2016/11/12. pmid:27835698; PubMed Central PMCID: PMC5105954.
  17. 17. Nakanishi N, Nishizawa S, Kitamura Y, Nakamura T, Matsumuro A, Sawada T, et al. The increased mortality from witnessed out-of-hospital cardiac arrest in the home. Prehosp Emerg Care. 2011;15(2):271–7. Epub 2011/03/04. pmid:21366434.
  18. 18. Shiraishi J, Kohno Y, Sawada T, Kimura M, Ariyoshi M, Matsui A, et al. Predictors of in-hospital prognosis after primary percutaneous coronary intervention for acute myocardial infarction requiring mechanical support devices. Circ J. 2010;74(6):1152–7. Epub 2010/04/10. pmid:20379002.
  19. 19. Fabian Pedregosa GV, Alexandre Gramfort, Vincent Michel, Bertrand Thirion, Olivier Grisel, Mathieu Blondel, et al. Machine Learning in Python. Journal of Machine Learning Research. 2011;12(85):2825–30.
  20. 20. Saito T, Rehmsmeier M. Precrec: fast and accurate precision-recall and ROC curve calculations in R. Bioinformatics. 2017;33(1):145–7. Epub 2016/09/04. pmid:27591081; PubMed Central PMCID: PMC5408773.
  21. 21. R Core Team (2019). R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Austria. https://www.R-project.org/.
  22. 22. Robin X, Turck N, Hainard A, Tiberti N, Lisacek F, Sanchez JC, et al. pROC: an open-source package for R and S+ to analyze and compare ROC curves. BMC Bioinformatics. 2011;12:77. Epub 2011/03/19. pmid:21414208; PubMed Central PMCID: PMC3068975.
  23. 23. Halkin A, Stone GW, Grines CL, Cox DA, Rutherford BD, Esente P, et al. Prognostic implications of creatine kinase elevation after primary percutaneous coronary intervention for acute myocardial infarction. J Am Coll Cardiol. 2006;47(5):951–61. Epub 2006/03/07. pmid:16516077.
  24. 24. Zabel M, Hohnloser SH, Koster W, Prinz M, Kasper W, Just H. Analysis of creatine kinase, CK-MB, myoglobin, and troponin T time-activity curves for early assessment of coronary artery reperfusion after intravenous thrombolysis. Circulation. 1993;87(5):1542–50. Epub 1993/05/01. pmid:8491009.
  25. 25. Nikolsky E, Aymong ED, Halkin A, Grines CL, Cox DA, Garcia E, et al. Impact of anemia in patients with acute myocardial infarction undergoing primary percutaneous coronary intervention: analysis from the Controlled Abciximab and Device Investigation to Lower Late Angioplasty Complications (CADILLAC) Trial. J Am Coll Cardiol. 2004;44(3):547–53. Epub 2004/09/11. pmid:15358018.
  26. 26. Wu WC, Rathore SS, Wang Y, Radford MJ, Krumholz HM. Blood transfusion in elderly patients with acute myocardial infarction. N Engl J Med. 2001;345(17):1230–6. Epub 2001/10/30. pmid:11680442.
  27. 27. Ducrocq G, Gonzalez-Juanatey JR, Puymirat E, Lemesle G, Cachanado M, Durand-Zaleski I, et al. Effect of a Restrictive vs Liberal Blood Transfusion Strategy on Major Cardiovascular Events Among Patients With Acute Myocardial Infarction and Anemia: The REALITY Randomized Clinical Trial. JAMA. 2021;325(6):552–60. Epub 2021/02/10. pmid:33560322; PubMed Central PMCID: PMC7873781.
  28. 28. Halkin A, Singh M, Nikolsky E, Grines CL, Tcheng JE, Garcia E, et al. Prediction of mortality after primary percutaneous coronary intervention for acute myocardial infarction: the CADILLAC risk score. J Am Coll Cardiol. 2005;45(9):1397–405. Epub 2005/05/03. pmid:15862409.
  29. 29. Sutton NR, Li S, Thomas L, Wang TY, de Lemos JA, Enriquez JR, et al. The association of left ventricular ejection fraction with clinical outcomes after myocardial infarction: Findings from the Acute Coronary Treatment and Intervention Outcomes Network (ACTION) Registry-Get With the Guidelines (GWTG) Medicare-linked database. Am Heart J. 2016;178:65–73. Epub 2016/08/10. pmid:27502853.
  30. 30. Abu-Assi E, Ferreira-Gonzalez I, Ribera A, Marsal JR, Cascant P, Heras M, et al. "Do GRACE (Global Registry of Acute Coronary events) risk scores still maintain their performance for predicting mortality in the era of contemporary management of acute coronary syndromes?". Am Heart J. 2010;160(5):826–34 e1-3. Epub 2010/11/26. pmid:21095268.
  31. 31. Truong QA, Cannon CP, Zakai NA, Rogers IS, Giugliano RP, Wiviott SD, et al. Thrombolysis in Myocardial Infarction (TIMI) Risk Index predicts long-term mortality and heart failure in patients with ST-elevation myocardial infarction in the TIMI 2 clinical trial. Am Heart J. 2009;157(4):673–9 e1. Epub 2009/04/01. pmid:19332194; PubMed Central PMCID: PMC2694948.
  32. 32. Eagle KA, Lim MJ, Dabbous OH, Pieper KS, Goldberg RJ, Van de Werf F, et al. A validated prediction model for all forms of acute coronary syndrome: estimating the risk of 6-month postdischarge death in an international registry. JAMA. 2004;291(22):2727–33. Epub 2004/06/10. pmid:15187054.
  33. 33. Komiyama K, Nakamura M, Tanabe K, Niikura H, Fujimoto H, Oikawa K, et al. In-hospital mortality analysis of Japanese patients with acute coronary syndrome using the Tokyo CCU Network database: Applicability of the GRACE risk score. J Cardiol. 2018;71(3):251–8. Epub 2017/11/06. pmid:29102289.
  34. 34. Addala S, Grines CL, Dixon SR, Stone GW, Boura JA, Ochoa AB, et al. Predicting mortality in patients with ST-elevation myocardial infarction treated with primary percutaneous coronary intervention (PAMI risk score). Am J Cardiol. 2004;93(5):629–32. Epub 2004/03/05. pmid:14996596.
  35. 35. De Luca G, Suryapranata H, van ’t Hof AW, de Boer MJ, Hoorntje JC, Dambrink JH, et al. Prognostic assessment of patients with acute myocardial infarction treated with primary angioplasty: implications for early discharge. Circulation. 2004;109(22):2737–43. Epub 2004/05/26. pmid:15159293.