Figures
Abstract
Background
Coronary heart disease (CHD) and diabetes mellitus are highly prevalent in intensive care units (ICUs) and significantly contribute to high in-hospital mortality rates. Traditional risk stratification models often fail to capture the complex interactions among clinical variables, limiting their ability to accurately identify high-risk patients. Machine learning (ML) models, with their capacity to analyze large datasets and identify intricate patterns, provide a promising alternative for improving mortality prediction accuracy.
Objective
This study aims to develop and validate machine learning models for predicting in-hospital mortality in ICU patients with CHD and diabetes, and enhance model interpretability using SHapley Additive exPlanation (SHAP) values, thereby providing a more accurate and practical tool for clinicians.
Methods
We conducted a retrospective cohort study using data from the MIMIC-IV database, focusing on adult ICU patients with a primary diagnosis of CHD and diabetes. We extracted baseline characteristics, laboratory parameters, and clinical outcomes. The Boruta algorithm was employed for feature selection to identify variables significantly associated with in-hospital mortality, and 16 machine learning models, including logistic regression, random forest, gradient boosting, and neural networks, were developed and compared using receiver operating characteristic (ROC) curves and area under the curve (AUC) analysis. SHAP values were used to explain variable importance and enhance model interpretability.
Results
Our study included 2,213 patients, of whom 345 (15.6%) experienced in-hospital mortality. The Boruta algorithm identified 29 significant risk factors, and the top 13 variables were used for developing machine learning models. The gradient boosting classifier achieved the highest AUC of 0.8532, outperforming other models. SHAP analysis highlighted age, blood urea nitrogen, and pH as the most important predictors of mortality. SHAP waterfall plots provided detailed individualized risk assessments, demonstrating the model’s ability to identify high-risk subgroups effectively.
Conclusions
Machine learning models, especially the gradient boosting classifier, demonstrated superior performance in predicting in-hospital mortality in ICU patients with CHD and diabetes, outperforming traditional statistical methods. These models provide valuable insights for risk stratification and have the potential to improve clinical outcomes. Future work should focus on external validation and clinical implementation to further enhance their applicability and effectiveness in managing this high-risk population.
Citation: Tu G, Cai Z, Wu L, Yu H, Jiang H, Luo H (2025) Predicting in-hospital mortality in ICU patients with Coronary heart disease and diabetes mellitus using machine learning models. PLoS One 20(8): e0330381. https://doi.org/10.1371/journal.pone.0330381
Editor: Kwang-Sig Lee, Korea University - Seoul Campus: Korea University, KOREA, REPUBLIC OF
Received: April 16, 2025; Accepted: July 31, 2025; Published: August 14, 2025
Copyright: © 2025 Tu et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited.
Data Availability: The data used in this study are available from the Massachusetts Institute of Technology (MIT) and Beth Israel Deaconess Medical Center (BIDMC) upon request. Data can be accessed through the MIMIC-IV v3.1 database, which is publicly available at https://physionet.org/content/mimiciv/3.1/. Researchers interested in using the data should follow the instructions provided on the website to obtain access.
Funding: The author(s) received no specific funding for this work.
Competing interests: The authors have declared that no competing interests exist.
Abbreviations:: CHD, Coronary heart disease; AKI, Acute kidney injury; AUC, Area under the curve; CKD, Chronic kidney disease; GUI, Graphical user interface; ICU, Intensive care unit; INR, International normalized ratio; IQR, Interquartile range; LASSO, Least absolute shrinkage and selection operator; MIMIC-IV, Medical Information Mart for Intensive Care IV; ML, Machine learning; ROC, Receiver operating characteristic; SD, Standard deviation; SHAP, SHapley Additive exPlanations; WBC, White blood cell count
Introduction
Coronary heart disease (CHD) is a leading cause of death and disability globally, with a complex pathogenesis involving plaque rupture, thrombosis, and myocardial ischemia-reperfusion injury [1,2]. The prognosis of CHD remains poor when it is complicated by other diseases, with a significant increase in mortality risk [3,4]. Diabetes mellitus is a common comorbidity in CHD patients, and the interplay between these conditions further deteriorates outcomes [5,6]. In the intensive care unit (ICU) setting, patients with CHD and diabetes are critically ill, with high mortality rates influenced by multiple factors [7]. Early identification of high-risk patients and optimization of treatment strategies are therefore essential.
To address the high mortality risk in these patients, clinicians have relied on risk stratification tools based on clinical experience and statistical methods (e.g., GRACE and TIMI scores) to assess the prognosis of CHD patients [8,9]. However, these tools have limitations in handling complex clinical scenarios and fail to capture the complex interactions between variables. In recent years, machine learning techniques have been widely applied in the medical field to analyze large datasets and identify patterns to predict outcomes more accurately [10–12]. These techniques can handle non-linear relationships and integrate multiple variables to provide more accurate prognostic assessments. However, the application of machine learning in clinical practice still faces challenges related to data quality and model interpretability.
Despite the potential benefits of machine learning, there is a research gap in its application for predicting in-hospital mortality specifically in ICU patients with CHD and diabetes. Previous studies have explored the use of machine learning in predicting mortality in various clinical settings, but few have focused on this high-risk patient population [13,14]. This study aims to fill this gap by developing and validating machine learning models for predicting in-hospital mortality in ICU patients with CHD and diabetes, enhancing model interpretability using SHapley Additive exPlanation (SHAP) values. By leveraging data from the MIMIC-IV database, we developed and compared multiple machine learning models to provide clinicians with more accurate and practical risk assessment tools to improve patient outcomes.
Methods
Data source and study design
This retrospective cohort study utilized data from the MIMIC-IV database, version 3.1, a publicly available, de-identified electronic health record database containing comprehensive clinical data from adult ICU patients admitted to Beth Israel Deaconess Medical Center in Boston, USA [15,16]. Author Guang Tu finished the CITI Data or Specimens Only Research course, obtained approval for database access, and assumed responsibility for data extraction (certification number 65828445). The study included adult ICU patients with a primary diagnosis of CHD and diabetes. CHD was diagnosed based on International Classification of Diseases, Tenth Revision (ICD-10) codes I2510, I25110, I25119, I25118, I25111, and diabetes was diagnosed based on ICD-10 codes E10-E14. Exclusion criteria included: (1) excluded all records with missing values for any of the variables included in the analysis; (2) hospital stay less than 24 hours; (3) age under 18 years. The included patient data covered hospitalizations from 2008 to 2019. (Fig 1)
Data collection and processing
Baseline characteristics, laboratory parameters, and clinical outcomes were extracted from the MIMIC-IV database, version 3.1. Specific variables included demographic information (e.g., age, sex), physiological parameters (e.g., heart rate, blood pressure), laboratory test results (e.g., blood cell counts, glucose, electrolyte levels, renal function indicators), and comorbidities (e.g., heart failure, diabetes, chronic lung disease). Data preprocessing included handling missing values and variable standardization to ensure the accuracy and stability of model training. All missing values for variables were directly excluded.
Feature selection
To identify risk factors significantly associated with in-hospital mortality, the Boruta algorithm was employed for feature selection. The Boruta algorithm, a feature selection method based on random forests, automatically identifies features that significantly impact the dependent variable. Regularization parameters (λ) were determined through cross-validation, and the feature selection process was visualized using coefficient paths and cross-validation plots [17]. Ultimately, the Boruta algorithm identified 29 key featurers, with the top 13 features used for subsequent ML model development. The tentative attributes (marked as yellow in Fig 3) were excluded to ensure the model’s simplicity and interpretability.
Machine learning model development
During the model development phase, we optimized several machine learning models using grid search tuning. Based on the key risk factors identified by the Boruta algorithm, 16 ML models were developed, including logistic regression, random forest, gradient boosting, neural networks, and Extra Trees classifiers. To further evaluate the performance and interpretability of the models, we calculated permutation importance for both the Gradient Boosting Classifier and the Random Forest Classifier using the permutation importance function from scikit-learn. This analysis will help us compare the strengths and weaknesses of these two models in terms of variable importance and predictive power. Each model was trained and validated through cross-validation to ensure its generalizability. Model performance was assessed using receiver operating characteristic (ROC) curves and area under the curve (AUC) analysis, with higher AUC values indicating stronger predictive capabilities. Additionally, accuracy, F1 score, and predictive power were calculated for each model to provide a comprehensive evaluation of performance.
Model interpretation and validation
To assess the overall contribution of each variable to the model’s predictive performance, we additionally calculated permutation importance using the permutation importance function from scikit-learn (version 1.3.0). This method measures the decrease in model performance (AUC) when the values of a single variable are randomly shuffled, thereby quantifying the strength of association between each predictor and the outcome. To enhance the clinical interpretability of the models, SHAP values were used for model explanation. SHAP values, based on game theory, quantify the contribution of each variable to model predictions and reveal complex interactions between variables. SHAP analysis not only validated the key variables identified by the Boruta algorithm but also assessed their specific impact on individual predictions. Furthermore, SHAP waterfall plots decomposed individual patient predictions, clearly showing the positive or negative contributions of each variable to the prediction results, providing clinicians with tools for individualized risk assessment.
Workflow of the study
The study’s workflow, as depicted in Fig 2, began with data extraction from the MIMIC-IV database, focusing on baseline characteristics, laboratory parameters, and clinical outcomes. This was followed by a preprocessing phase where we handled missing values and performed variable standardization to ensure data quality. Subsequently, feature selection was conducted using the Boruta algorithm to identify key features impacting model predictions. A suite of 16 machine learning models, including Gradient Boosting, Neural Networks, and Random Forest, was then developed. These models were evaluated using ROC curves, AUC analysis, and SHAP values to assess their predictive performance. Finally, we interpreted the results through SHAP analysis and individualized risk assessment to understand the models’ predictive mechanisms and the contribution of each feature to the outcomes [18].
Statistical analysis
Statistical analyses were performed utilizing R Statistical Software (Version 4.2.2; [The R Project for Statistical Computing](http://www.R-project.org), The R Foundation) and the Free Statistics Analysis Platform (Version 2.1.1; Beijing, China; [http://www.clinicalscientists.cn/freestatistics] (http://www.clinicalscientists.cn/freestatistics)) [19]. Results with a p-value below 0.05 were deemed statistically significant. Data processing and model training were conducted on a local server to safeguard data security and privacy.
Results
Baseline characteristics
The baseline characteristics of the 2,213 included patients are detailed in Table 1. The table covers demographic information, physiological parameters, laboratory test results, and comorbidities. Significant differences were observed between survivors and non-survivors across multiple variables. The mean age of non-survivors (73.4 years) was significantly higher than that of survivors (68.4 years, p < 0.001), indicating that advanced age is an important risk factor for mortality. Additionally, non-survivors had significantly higher systolic and diastolic blood pressures, glucose levels, anion gap, blood urea nitrogen, and creatinine levels, while having lower platelet counts and hemoglobin levels.
Boruta algorithm selection results
The Boruta algorithm was used to select variables and identify risk factors significantly associated with in-hospital mortality (Fig 3). Based on Boruta analysis, 29 features were selected from the 41 most closely related to in-hospital mortality. The top 13 features, according to Z-values, were used as key input variables for subsequent ML model development, ensuring that the models were built on the most predictive features.
The horizontal axis is the name of each variable, and the vertical axis is the Z-value of each variable. The box plot shows the Z-value of each variable in the model calculation. The green boxes represent the 29 important variables, the yellow represents tentative attributes, and the red represents unimportant variables.
Model prediction performance comparison
In the comparison of model prediction performance, Tables 2 and 3 show that various machine learning models exhibited significant improvements in predicting in-hospital mortality for ICU patients with coronary heart disease and diabetes mellitus after optimization using grid search tuning. Notably, the Gradient Boosting Classifier and the Random Forest Classifier both achieved high performance with AUC values of 0.8532 and 0.8461, respectively. However, their permutation importance and SHAP plots revealed different patterns in variable contributions. Before optimization, the Gradient Boosting Classifier and CatBoost Classifier already demonstrated strong performance, with accuracies of 86.30% and 86.14%, and AUC values of 0.8178 and 0.8150, respectively. After optimization, the Gradient Boosting Classifier achieved the highest performance with an accuracy of 86.51% and an AUC of 0.8528. The CatBoost Classifier followed closely, with an accuracy of 86.57% and an AUC of 0.8509. Other models, including the Ridge Classifier, Logistic Regression, and Random Forest Classifier, also showed notable enhancements in both accuracy and AUC.
Machine learning model performance
Fig 4 displays the ROC curves of the 16 ML models. The figure intuitively reflects the models’ discriminatory abilities, with higher AUC values indicating better predictive performance. The gradient boosting classifier achieved the highest AUC value (0.8532), demonstrating its best performance in predicting in-hospital mortality. This figure clearly compares the strengths and weaknesses of different models, providing an important basis for selecting the best model.
Variable importance and SHAP values
Fig 5a displays the permutation importance of the top 10 variables for predicting in-hospital mortality. Fig 5b shows the SHAP summary plot, which evaluates the directionality of these associations. Figs 5a and 5c, and Figs 5b and 5d compare the permutation importance and SHAP summary plots for the Gradient Boosting Classifier and the Random Forest Classifier, respectively. These figures highlight the differences in variable importance and the direction of their effects as identified by each model. Variables such as age, BUN, and pH were assigned higher weights, indicating their key roles in predicting mortality. This analysis helps clinicians understand which factors have the greatest impact on patient prognosis, thereby guiding clinical decision-making. Figs 5b and 5d presents the results of SHAP value analysis. SHAP analysis quantifies the contribution of each variable to model predictions and reveals the specific impact of each feature on individual predictions. This analysis not only validates the key variables identified by the Boruta algorithm (e.g., age, BUN, pH) but also provides details on the interactions between variables.
SHAP waterfall plot
Fig 6 displays the SHAP waterfall plot. The plot decomposes individual patient predictions, clearly showing the positive or negative contributions of each variable to the prediction results. For example, a high systolic blood pressure (SBP) may significantly increase the risk of death, while a lower BUN level may have a protective effect on survival.
Discussion
This study successfully utilized machine learning models to predict in-hospital mortality in ICU patients with CHD and diabetes. Compared to traditional statistical methods, machine learning models demonstrated a stronger ability to capture complex interactions between clinical variables, thereby significantly improving predictive accuracy [20]. In particular, the gradient boosting classifier achieved the highest AUC value (0.8532), indicating its superior ability to distinguish between high-risk and low-risk patients. This result not only validates the effectiveness of machine learning in handling complex clinical data but also provides clinicians with a powerful tool for early identification of high-risk patients and optimization of treatment strategies, outperforming traditional statistical methods.
The high mortality rate in ICU patients with CHD and diabetes is related to multiple pathophysiological mechanisms. CHD involves coronary plaque rupture, thrombosis, and myocardial ischemia-reperfusion injury, all of which lead to myocardial cell damage and death [21–23]. The presence of diabetes further exacerbates this damage. Chronic hyperglycemia in diabetes patients leads to endothelial dysfunction, increased platelet aggregation, and a prothrombotic state, thereby promoting the development of atherosclerosis [24–26]. Additionally, hyperglycemia increases oxidative stress, damaging mitochondrial function in myocardial cells and worsening ischemic injury [27].
From the model results of this study, age, blood urea nitrogen (BUN), and pH were identified as the three most important variables for predicting mortality. The increase in age likely reflects the reduced cardiovascular and metabolic functions in elderly patients, making them less tolerant to the dual insults of CHD and diabetes [28,29]. Elevated BUN levels may indicate renal dysfunction, a common complication in CHD patients, especially those with diabetes. Renal dysfunction leads to the accumulation of toxins, further burdening the heart and affecting myocardial cell metabolism and function [30,31]. Moreover, elevated BUN levels may also be associated with systemic inflammatory responses, which play important roles in the pathogenesis of both CHD and diabetes. Inflammatory factors damage endothelial cells, promote thrombosis, and worsen myocardial ischemic injury [32,33].
Changes in pH values may be related to the respiratory and circulatory functions of patients. Acidosis (lower pH) may be caused by respiratory failure or metabolic acidosis, which is common in critically ill patients [34,35]. Acidosis affects myocardial contractility, reduces the responsiveness of myocardial cells to catecholamines, and worsens cardiac pump dysfunction. Additionally, acidosis leads to vasodilation, further reducing blood pressure and myocardial perfusion, creating a vicious cycle [36,37].
Other variables such as anion gap, lactate, and bicarbonate were also identified as important risk factors. An elevated anion gap typically indicates the presence of metabolic acidosis, which may be related to lactic acidosis [38]. Elevated lactate levels reflect tissue hypoxia and anaerobic metabolism, important signs of myocardial ischemia and systemic circulatory failure [39]. Changes in bicarbonate levels may be related to the body’s compensatory mechanisms for acid-base imbalances, and their abnormalities also suggest severe metabolic disorders in patients [40].
The gradient boosting classifier’s superior performance can be attributed to its ability to handle non-linear relationships and integrate a large number of variables. Traditional statistical models often rely on linear assumptions and may fail to fully consider the complex interactions between multiple clinical factors. In comparison, the Random Forest Classifier, while achieving a slightly lower AUC of 0.8461, demonstrated different patterns in permutation importance and SHAP plots. Boosting models, such as Gradient Boosting, focus on the final decision of the strongest tree with minimal bias, making them highly effective in capturing complex interactions. In contrast, Random Forest models rely on the majority vote of all trees with minimal variance, providing robustness against overfitting. The choice between these models depends on the specific characteristics of the dataset and the trade-off between bias and variance. In contrast, machine learning algorithms like gradient boosting can identify subtle patterns in the data that traditional methods cannot detect [17]. For example, in this study, the model identified age, BUN, and pH as key predictive factors, consistent with the pathophysiological mechanisms of CHD and diabetes.
Another significant advantage of machine learning models is their ability to integrate a wide range of clinical variables, including demographic information, physiological parameters, laboratory test results, and comorbidities. This multidimensional data integration capability allows the model to more comprehensively reflect the patient’s condition, thereby improving the accuracy and reliability of predictions [10–12]. For example, in this study, in addition to age, BUN, and pH, variables such as anion gap, lactate, and bicarbonate were also identified as important risk factors. The comprehensive consideration of these variables further enhances the model’s predictive power, enabling it to more accurately reflect individual patient risks.
Limitations
However, despite the significant advantages of machine learning models in predictive performance, their application in clinical practice still faces some challenges. First, the complexity of machine learning models may make it difficult for clinicians to understand their decision-making processes. Although SHAP value analysis provides a certain degree of interpretability, how to translate these complex model results into clinically actionable recommendations remains a problem to be solved. Second, the development and validation of machine learning models require large amounts of data and computational resources, which may limit their application in resource-limited healthcare settings. Additionally, the generalizability of the model needs to be further confirmed through external validation to ensure its applicability in different medical environments and patient populations.
Conclusions
This study successfully utilized machine learning models to predict in-hospital mortality in ICU patients with CHD and diabetes, enhancing model interpretability through SHAP value analysis. These results demonstrate that machine learning models not only outperform traditional statistical methods in predictive accuracy but also provide clinicians with powerful tools for early identification of high-risk patients and optimization of treatment strategies. As technology continues to advance and clinical applications expand, machine learning is expected to play an increasingly important role in future medical practice, providing strong support for improving patient outcomes.
References
- 1. Fernandez RC, Konate K, Josse E, Nargeot J, Barrère-Lemaire S, Boisguérin P. Therapeutic Peptides to Treat Myocardial Ischemia-Reperfusion Injury. Front Cardiovasc Med. 2022;9:792885.
- 2. Welch TD, Yang EH, Reeder GS, Gersh BJ. Modern management of acute myocardial infarction. Curr Probl Cardiol. 2012;37(7):237–310. pmid:22664306
- 3. Mureddu GF, D’Errigo P, Rosato S, Faggiano P, Badoni G, Ceravolo R, et al. The relative impact of components of high residual risk on the long-term prognosis after AMI. Int J Cardiol Cardiovasc Risk Prev. 2024;22:200310. pmid:39109290
- 4. Honda T, Kanazawa H, Koga H, Miyao Y, Fujimoto K. Heart rate on admission is an independent risk factor for poor cardiac function and in-hospital death after acute myocardial infarction. J Cardiol. 2010;56(2):197–203. pmid:20579854
- 5. Kufazvinei T, Chai J, Boden KA, Channon KM, Choudhury RP. Emerging opportunities to target inflammation: myocardial infarction and type 2 diabetesJ. Cardiovasc Res, 2024,120(11):1241–52.
- 6. Xia JG, Li B, Zhang H, Li QX, Lam SM, Yin CL. Precise metabolomics defines systemic metabolic dysregulation distinct to acute myocardial infarction associated with diabetes. Arterioscler Thromb Vasc Biol. 2023;43(4):581–96.
- 7. Wernly B, Lichtenauer M, Franz M, Kabisch B, Muessig J, Masyuk M. Differential impact of hyperglycemia in critically ill patients: significance in acute myocardial infarction but not in sepsis?. Int J Mol Sci. 2016;17(9).
- 8. Mitarai T, Tanabe Y, Akashi YJ, Maeda A, Ako J, Ikari Y, et al. A novel risk stratification system “Angiographic GRACE Score” for predicting in-hospital mortality of patients with acute myocardial infarction: Data from the K-ACTIVE Registry. J Cardiol. 2021;77(2):179–85. pmid:32921529
- 9. Roy SS, Abu Azam STM, Khalequzzaman M, Ullah M, Arifur Rahman M. GRACE and TIMI risk scores in predicting the angiographic severity of non-ST elevation acute coronary syndrome. Indian Heart J. 2018;70 Suppl 3(Suppl 3):S250–3. pmid:30595268
- 10. Zhan K, Buhler KA, Chen IY, Fritzler MJ, Choi MY. Systemic lupus in the era of machine learning medicine. Lupus Sci Med. 2024;11(1):e001140. pmid:38443092
- 11. Daidone M, Ferrantelli S, Tuttolomondo A. Machine learning applications in stroke medicine: advancements, challenges, and future prospectives. Neural Regen Res. 2024;19(4):769–73.
- 12. Galal A, Talal M, Moustafa A. Applications of machine learning in metabolomics: Disease modeling and classification. Front Genet. 2022;13:1017340. pmid:36506316
- 13. Pieszko K, Hiczkiewicz J, Budzianowski P, Budzianowski J, Rzeźniczak J, Pieszko K, et al. Predicting Long-Term Mortality after Acute Coronary Syndrome Using Machine Learning Techniques and Hematological Markers. Dis Markers. 2019;2019:9056402. pmid:30838085
- 14. Ermak AD, Gavrilov DV, Novitskiy RE, Gusev AV, Andreychenko AE. Development, evaluation and validation of machine learning models to predict hospitalizations of patients with coronary artery disease within the next 12 monthsJ. Int J Med Inform. 2024;188:105476.
- 15. Johnson AE, Stone DJ, Celi LA, Pollard TJ. The MIMIC Code Repository: enabling reproducibility in critical care research. J Am Med Inform Assoc. 2018;25(1):32–9. pmid:29036464
- 16. Zhou Y, Chen Y, Liang S, Li Y, Zhao C, Wu Z. Association between potassium fluctuation and in-hospital mortality in acute myocardial infarction patients: a retrospective analysis of the MIMIC-IV databaseJ. Clin Res Cardiol. 2025.
- 17. Zhou H, Xin Y, Li S. A diabetes prediction model based on Boruta feature selection and ensemble learning. BMC Bioinformatics. 2023;24(1):224. pmid:37264332
- 18. Ngusie HS, Mengiste SA, Zemariam AB, Molla B, Tesfa GA, Seboka BT, et al. Predicting adverse birth outcome among childbearing women in Sub-Saharan Africa: employing innovative machine learning techniques. BMC Public Health. 2024;24(1):2029. pmid:39075434
- 19. Han KY, Gu J, Wang Z, Liu J, Zou S, Yang CX. Association between METS-IR and prehypertension or hypertension among normoglycemia subjects in Japan: a retrospective study. Front Endocrinol (Lausanne). 2022;13:851338.
- 20. Praveen SP, Hasan MK, Abdullah SNHS, Sirisha U, Tirumanadham NSKMK, Islam S, et al. Enhanced feature selection and ensemble learning for cardiovascular disease prediction: hybrid GOL2-2 T and adaptive boosted decision fusion with babysitting refinement. Front Med (Lausanne). 2024;11:1407376. pmid:39071085
- 21. Wang K, Zhu Q, Liu W, Wang L, Li X, Zhao C, et al. Mitochondrial apoptosis in response to cardiac ischemia-reperfusion injury. J Transl Med. 2025;23(1):125. pmid:39875870
- 22. Chen J, Wang B, Meng T, Li C, Liu C, Liu Q. Oxidative Stress and Inflammation in Myocardial Ischemia-Reperfusion Injury: Protective Effects of Plant-Derived Natural Active Compounds. J Appl Toxicol. 2024.
- 23. Młynarska E, Czarnik W, Fularski P, Hajdys J, Majchrowicz G, Stabrawa M. From atherosclerotic plaque to myocardial infarction - the leading cause of coronary artery occlusion. Int J Mol Sci. 2024;25(13).
- 24. Yang T, Zhang D. Research progress on the effects of novel hypoglycemic drugs in diabetes combined with myocardial ischemia/reperfusion injury. Ageing Res Rev. 2023;86:101884. pmid:36801379
- 25. Li Z, Zhang J, Ma Z, Zhao G, He X, Yu X, et al. Endothelial YAP Mediates Hyperglycemia-Induced Platelet Hyperactivity and Arterial Thrombosis. Arterioscler Thromb Vasc Biol. 2024;44(1):254–70. pmid:37916416
- 26. Chiva-Blanch G, Peña E, Cubedo J, García-Arguinzonis M, Pané A, Gil PA, et al. Molecular mapping of platelet hyperreactivity in diabetes: the stress proteins complex HSPA8/Hsp90/CSK2α and platelet aggregation in diabetic and normal platelets. Transl Res. 2021;235:1–14. pmid:33887528
- 27. Rudokas MW, McKay M, Toksoy Z, Eisen JN, Bögner M, Young LH, et al. Mitochondrial network remodeling of the diabetic heart: implications to ischemia related cardiac dysfunction. Cardiovasc Diabetol. 2024;23(1):261. pmid:39026280
- 28. Hajduk AM, Dodson JA, Murphy TE, Tsang S, Geda M, Ouellet GM, et al. Risk Model for Decline in Activities of Daily Living Among Older Adults Hospitalized With Acute Myocardial Infarction: The SILVER-AMI Study. J Am Heart Assoc. 2020;9(19):e015555. pmid:33000681
- 29. Dianati-Maleki N, Butler J. Diabetes Mellitus in Patients With Heart Failure: Bad for All, Worse for Some. JACC Heart Fail. 2017;5(1):25–7. pmid:28034374
- 30. Kim CS, Choi JS, Bae EH, Ma SK, Ahn Y-K, Jeong MH, et al. Association of metabolic syndrome and renal insufficiency with clinical outcome in acute myocardial infarction. Metabolism. 2013;62(5):669–76. pmid:23218489
- 31. Sriperumbuduri S, Clark E, Hiremath S. New Insights Into Mechanisms of Acute Kidney Injury in Heart Disease. Can J Cardiol. 2019;35(9):1158–69. pmid:31472814
- 32. Kozakova M, Morizzo C, Goncalves I, Natali A, Nilsson J, Palombo C. Cardiovascular organ damage in type 2 diabetes mellitus: the role of lipids and inflammation. Cardiovasc Diabetol. 2019;18(1):61. pmid:31077210
- 33. Kanter JE, Bornfeldt KE. Inflammation and diabetes-accelerated atherosclerosis: myeloid cell mediators. Trends Endocrinol Metab. 2013;24(3):137–44. pmid:23153419
- 34. Achanti A, Szerlip HM. Acid-Base Disorders in the Critically Ill Patient. Clin J Am Soc Nephrol. 2023;18(1):102–12. pmid:35998977
- 35. Masevicius FD, Rubatto BP, Risso VA, Zechner FE, Motta MF, Valenzuela EE. Relationship of at admission lactate, unmeasured anions, and chloride to the outcome of critically ill patients. Crit Care Med. 2017;45(12):e1233–9.
- 36. Kimmoun A, Ducrocq N, Levy B. New conclusive data on human myocardial dysfunction induced by acidosis. Crit Care. 2012;16(5):160. pmid:23134672
- 37. Kumbhani DJ, Healey NA, Thatte HS, Birjiniuk V, Crittenden MD, Treanor PR, et al. Intraoperative myocardial acidosis as a risk for hospital readmission after cardiac surgery. Am J Surg. 2009;198(3):373–80. pmid:19716885
- 38. Romero JE, Htyte N. An unusual cause of high anion gap metabolic acidosis: pyroglutamic acidemia. A case report. Am J Ther. 2013;20(5):581–4. pmid:21519223
- 39. Zymliński R, Biegus J, Sokolski M, Siwołowski P, Nawrocka-Millward S, Todd J, et al. Increased blood lactate is prevalent and identifies poor prognosis in patients with acute heart failure without overt peripheral hypoperfusion. Eur J Heart Fail. 2018;20(6):1011–8. pmid:29431284
- 40. Sheikh IA, Malik A, AlBasri SFM, Beg MA. In silico identification of genes involved in chronic metabolic acidosis. Life Sci. 2018;192:246–52. pmid:29138116