- Research
- Open access
- Published:
Predicting blood transfusion demand in intensive care patients after surgery by comparative analysis of temporally extended data selection
BMC Medical Informatics and Decision Making volume 24, Article number: 397 (2024)
Abstract
Background
Blood transfusion (BT) is a critical aspect of medical care for surgical patients in the Intensive Care Unit (ICU). Timely and accurate identification of BT needs can enhance patient outcomes and healthcare resource management.
Methods
This study aims to determine whether a machine learning (ML) model can be trained to predict the need for blood transfusion (BT) in patients on the ICU after a wide range of surgeries, utilizing only data from the ICU.
Results
This retrospective study analyzed data from 9,118 surgical ICU patients from the Amsterdam University Medical Centers database (UMCdb). The study included a primary analysis using data from 6 h before ICU admission up to 1, 2, 3, and 6 h after admission, and a secondary analysis using only the data from 6 h before ICU admission and only the data from the first hour after admission. The model integrated 32 relevant clinical variables and compared the performance of XGBoost and logistic regression (LR) algorithms.
Conclusions
The model demonstrated an effective BT prediction, with XGBoost outperforming LR, particularly for a 12-hour prediction window. Notable differences in patient characteristics were observed among those who received BT and those who did not receive BT. The study establishes the feasibility of using ML for the prediction of BT in surgical ICU patients. It underlines the potential of ML models as decision support tools in healthcare, enabling early identification of BT needs.
Background
The need for a red blood cell transfusion (BT) is one of the most important complications of surgery [1]. Preparation for a BT is time-consuming, since a BT requires the determination of the blood group and the subsequent examination and preparation of the donor blood. Furthermore, patients requiring BT after surgery often stay longer in the hospital than patients without BT [2]. Thus, it is of great importance to plan a hospital stay as thoroughly as possible, for financial and organizational reasons. Subsequently, for improved planning it would be beneficial to find and optimize prognostic markers that can predict the need for BT [3].
There are already several clinical risk scores that attempt to assess the risk of requiring BT, e.g., for cardiopulmonary bypass and cardiac surgery. However, all scores have been created solely for a specific disease and often for patients in a specific clinical situation. Thus, their usability for the general patient population is limited [4, 5].
There have also been machine learning (ML) models developed to identify the need for BT; mostly perioperatively. Some studies focus on the prediction of the required blood volume [6,7,8]. Most of these studies provide models for intra or perioperative prediction of BT for specific surgery types, like for spinal surgery [9], pelvic fracture patients [10], cardiac surgery [11, 12], and gastric cancer [13]. There are only few studies targeting BT predictions from the perspective of an Intensive Care Unit (ICU) stay, which focus on gastrointestinal bleeding [14, 15] or cardiothoracic surgery [11]. Only two studies had a broader approach by targeting any kind of surgery in a perioperative setting [16] or all patients after hospital admission [17].
None of the studies assessed the need for BT after any kind of surgery from an ICU perspective, particularly not under consideration of an increasing large amount of data available over time on the ICU.
Therefore, this study aims to determine whether a machine learning (ML) model can be trained to predict the need for blood transfusion (BT) in patients on the ICU after a wide range of surgeries, utilizing only data measured after and shortly before ICU admission.
The focus is to provide an early-stage decision support that improves over time to identify the need for BT during and after ICU admission.
Methods
Study design and database description
In this retrospective study, we developed and validated an ML model to predict BT requirements for surgical patients following their admission to ICU. Data was extracted from the Amsterdam University Medical Centers database (UMCdb) version 1.0.2, including 23,106 admissions of 20,109 individual patients from 2003 to 2016. The database provides various types of data, including demographic data, data from patient monitors and life support devices (captured at a frequency of up to one measurement per minute), laboratory measurements, clinical observations and scores, medical procedures, medical tasks, medications, fluid balance, diagnosis groups, and clinical outcomes [18]. During model training and evaluation, we classified outcomes as follows:
-
Positive Outcome: Patients who required a blood transfusion during ICU admission after surgery.
-
Negative Outcome: Patients who did not require a blood transfusion during ICU admission after surgery.
These classifications were used to train and evaluate the machine learning model, ensuring that the predictions accurately reflect the necessity of blood transfusion in the given patient cohort.
Cohort selection
We included adult patients, aged 18 or older, who were admitted to the ICU primarily due to undergoing a single surgical procedure. In scenarios where patients had multiple admissions to the ICU, their initial admission was considered for analysis. Additionally, patients with a length of stay of less than 12 h in ICU were excluded.
Outcome definition and experimental setup
The predicted outcome is defined as the first transfusion of red blood cells following admission to the ICU. Aiming to develop an effective decision support tool for the ICU, we analyzed the predictive performance improvement of our model with the incorporation of a progressively increasing amount of data as input to the model. The overall model setup is described in Fig. 1.
In the primary analysis, we included data from 6 h preceding the ICU admission up to 1, 2, 3, and 6 h following an ICU admission (observation windows), in which we selected specific data points using statistical derivations. This data was employed to predict a need for BT at intervals of 12, 24, and 48 h following ICU admission (prediction windows). These prediction windows were defined according to the actual distribution of transfusion onset following ICU admission, presented in Fig. 2. The data shows a median transfusion onset time of 5.56 h. The distribution indicates the presence of a subset of patients experiencing longer transfusion onset times compared to the majority.
The secondary analyses were conducted with aim of better understanding the impact of the different observation windows on outcome prediction: pre-ICU and only-ICU. In the pre-ICU analysis, we have a fixed observation window in which we only included data 6 h before ICU admission up to the ICU admission. In the only-ICU analysis, we only included data from ICU admission until 1 h thereafter. For both these analyses, we utilized the same prediction windows as those used in the primary analysis.
Variable selection
We incorporated 32 clinical variables typically measured in the ICU, as identified by clinicians, that are considered relevant in predicting the requirement for BT (see Table S1 in the online supplement). These variables have been previously employed in literature and were available within the utilized dataset. Input variables include demographic data, vital sign measurement, and laboratory values.
Data preprocessing
We implemented essential data preprocessing techniques to develop accurate predictive models. We used the Z-score method for outlier removal to enhance the data integrity. We calculated various statistical measures of the clinical variables within the observation window to capture the dynamics of the observed features. These measures included the first, minimum, maximum, and last values of the clinical variables, which are served as model input features. This approach was designed to capture a detailed and dynamic profile of clinical variables over time, thereby providing a more nuanced understanding of the trends within our observation period. Missing values were handled by imputation methods, using a multiple-imputation method for numerical variables and the most frequent method for categorical variables. To ensure fair treatment of numerical features, we scaled the data into the range of (0,1).
Model development and evaluation
We utilized two machine learning algorithms, XGBoost (eXtreme Gradient Boosting) and LR (Logistic Regression), to predict the need for BT. XGBoost is a powerful ensemble learning method that combines multiple weak prediction models, such as decision trees, to create a robust and accurate predictive model. On the other hand, LR is a statistical modeling technique that estimates the probability of an event occurring based on input variables and serves as a baseline.
We utilized 5-fold cross-validation to train and evaluate the model, dividing the dataset into five folds. During each iteration, four folds were used for model training, and the remaining one was employed for evaluation. To address the potential class imbalance biases, we employed the StratifiedKFold method. This ensured that each fold maintained the proportion of samples for each class, avoiding biased performance evaluation.
The dataset includes an imbalanced ratio of positive and negative outcomes. Depending on the different prediction and observation windows, the positive outcome varies from 5 to 17%. This poses a major challenge for machine learning models to effectively distinguish between positive and negative outcomes. To address class imbalance in our dataset, we initially applied the class weight method to favor the minority class. However, this approach didn’t yield the desired results. We then switched to using the Youden index, which improved performance by optimally balancing sensitivity and specificity. Based on its superior effectiveness, we’ve decided to solely use the Youden index for enhancing our model’s performance.
We employed SHAP values (Shapley Additive exPlanations) to gain insights into the output generated by the XGBoost model. SHAP values offer a comprehensive interpretation of the model’s predictions by assigning importance scores to each input variable. These scores help us understand the influence of each feature on the predicted transfusion need in surgical patients, enabling us to identify the key factors driving the prediction. By employing XGBoost, LR, and SHAP values, we aimed to develop a robust predictive model while gaining valuable insights into the underlying factors contributing to a blood transfusion need.
Clinical variables are described according to the outcome using mean (± SD) or n (percentage), as appropriate. Mann–Whitney U-test or χ2 test were employed as appropriate. The predictive performance is presented using the Area Under the Receiver Operating Characteristic Curve (AUROC), the Area Under the Precision-Recall Curve (AUPRC), the Accuracy, the Sensitivity, the Specificity, Matthews Correlation Coefficient (MCC), and Brier Score. Furthermore, the Positive Rate (PR) (%) is provided as an indicator of data imbalance in each experiment.
Results
Following the application of our inclusion criteria, a cohort of 9,118 surgical patients were selected for this study from the original UMCdb. Of those, 2,064 patients underwent a BT whereas 7,054 patients did not receive a BT. Detailed patient characteristics of these two subgroups are shown in Table 1.
While the distribution of demographic parameters appears to be consistent between both groups, most other variables had a significant difference. Patients who required BT were more likely to require mechanical ventilation, had a prolonged stays on the ICU, and a higher rate of in-hospital mortality. BT needs also vary depending on the type of surgery.
Feature correlation
Figure 3 illustrates the correlation between all clinical variables in the overall patient selection. The strongest correlation is shown among RBC, Hb, Ht, NIMBP, NISBP, and NIDBP, which is to be expected, as different blood pressure measurements also have a strong correlation. The correlation coefficient between outcome (BT) and RBC, Lactate, Platelets, Ht, and Hb is slightly higher than any other set of variables.
Primary analysis using pre-ICU and in-ICU data
In the primary analysis, the model input consisted of data ranging from 6 h before to an increasing period after ICU admission to predict a BT need after 12, 24 and 48 h after admission. In most experiments, XGBoost outperforms LR, but not considerably. Overall, the best performing XGBoost models target a 12-hour prediction window, as shown in Table 2. Figure 4 further illustrates the trend resulting from the AUROC analysis.
The results from Table 2 indicates a progressive improvement in the XGBoost’s performance as the observation window extends from 1 to 3 h, likely due to increased volume of the data available over longer observation period. Interestingly, with an observation window of 6 h, the performance decreases, which is consistent with the decreasing number of BT onset. The only exception is in the observation window of 6 h with a prediction window of 12 h, where LR outperforms XGBoost with an AUROC of 0.86 ± 0.02 compared to 0.83 ± 0.02 in XGBoost. In contrast, with an increasing prediction window, the performance of the model tends to decline. This is anticipated because predicting over longer periods inherently becomes more challenging, leading to a drop in performance. These trends are similar in the other metrics, hence partially less clear. The MCC, a metric that is particularly suitable for imbalanced data and ranges from − 1 (worst) to 1 (best), yields results that correspond well with the AUROC results. Results of the best performing model are also illustrated as AUROC and AURPR in Fig. 5.
Secondary analysis using pre-ICU or only-ICU data
Table 3 shows the performance results of the secondary analysis. If the model is based solely on the data collected after ICU admission, the performance of the models is only marginally lower compared to the primary analysis for all metrics. In contrast, if only data documented prior to the ICU admission is used, the predictability is considerably lower.
Variable ranking
We employed the SHAP algorithm to gain valuable insights into the underlying factors contributing to transfusion requirements in surgical patients. Figure 5C ranks the top-10 variables that significantly impacted the performance of the most effective XGBoost model. In this regard, the variables that consistently emerged as influential across various analyses include Red Blood Cell count (RBC), hemoglobin (Hb), hematocrit (Ht), platelets, and heart rate (HR).
Discussion
Principal findings
This study investigated the application of machine learning algorithms for the prediction of red blood cell transfusions (BT) in patients admitted to the ICU after any kind of surgery. In contrast to most related work, we sought to apply BT prediction to a large cohort of patients with different surgery types, but still achieved comparably good results. We have incorporated an increasing amount of data to improve predictive performance with the increasing time the patient is on ICU. We have integrated most of the promising clinical variables from the literature and clinical expertise, with a focus on the variables typically measured in the ICU as opposed to those measured perioperatively.
Overall, the results demonstrate that conservative ML strategies can be used in a broad setting to provide healthcare professionals with early identification of patients requiring BT in the ICU.
Related work
ML algorithms are already being applied to patients in the perioperative setting. Similar to our study, Walczak et al. [16] conducted a study using data from the American College of Surgeons National Surgical Quality Improvement Program (NSQIP) participation use files (PUF) and utilizing neural networks. Their prediction performance is slightly lower than ours. However, they do not describe the point in the patient’s stay at which the prediction is made. More studies have been conducted that also predict BT in the perioperative setting, each, however, targeting a very specific surgical procedure and are therefore not fully comparable to our study design [3, 9,10,11, 13]. Apart from this, all of them either have a similar or a worse performance compared to ours, although these models were created very specifically for single diseases as opposed to all kinds of surgeries in our cohort.
There are only a few related works with a focus on the ICU, which also only emphasize on internal medicine topics as opposed to surgery. For example, Levi et al. [14] proposed an ML algorithm for the prediction of rebleeding in patients with gastrointestinal (GI) bleeding as a binary classification task. Similar to our study, they trained on an increasing amount of data using observation windows of 4, 5, 6, 7, and 8 h with ongoing time. Their best performing model was trained using a 6-hour observation window and achieved an AUROC of 0.81. The most important variables were hematocrit, the amount of transfused blood, the hematocrit trend, and blood pressure. Similar to Levi et al. [14], Shung et al. [15] addressed BT in GI bleeding as a binary classification task. They proposed a deep learning algorithm to predict the first transfusion after ICU admission, with data split into 4-hour windows. They use data from one 4-hour observation window to predict a transfusion need in the subsequent 4-hour prediction window. Their best model achieved an AUROC of 0.81 and was therefore slightly worse than ours.
The only paper with a similar focus on the BT prediction on a broad set of patients, authored by Mitterecker et al. [17] using data until the end of anamnesis directly after hospital admission. Among others, they investigated the performance of four different machine learning algorithms in predicting transfusions and massive transfusions (binary classification), and the number of transfusions (regression task). The most important clinical variables in their models were hemoglobin on admission, age, diagnoses of iron deficiency and anemia, and the Charlson Comorbidity Index. They report to have achieved prediction with an AUROC of 0.96, which is much higher than the AUROC in any other related works.
The studies described above [14, 15, 17] have also translated BT prediction into a binary classification task. However, none of these studies focused on predicting BT for all surgical patients from an ICU perspective, with the amount of data increasing with increasing duration the patient stays at the ICU.
Modeling approach
XGBoost generally exhibited a better performance than LR across various performance metrics. Nevertheless, the performance difference between the two models was not substantial. Both models showcased promising results, highlighting the potential effectiveness of machine learning for BT prediction.
Overall, the primary analysis demonstrates better performance compared to the pre-ICU and only-ICU analyses. The performance difference between pre-ICU and only-ICU reflects the different condition of the patient and the patient data at different times. The results underscore the importance of careful model evaluation and the need for context-specific adjustments when applying machine learning in the clinical setting.
We explored the impact of observation and prediction windows on the model performance. With longer observation periods, both models showed improved performance. This is likely due to the accumulation of more patient data, enabling the models to capture more meaningful patterns and trends. Conversely, as the prediction window increased, both models faced greater challenges in accurately predicting blood transfusion needs. Overly long prediction windows, however, inherently involve increased uncertainty, making the task more complex as shown with the 6-hour observation window. This finding underscores the importance of selecting appropriate observation and prediction windows when implementing machine learning models in clinical settings.
Clinical implications
The successful application of machine learning in predicting BT for ICU patients after surgery may have several clinical implications. By identifying patients at risk of a transfusion at an early stage, appropriate measures could be initiated proactively, such as optimizing blood supply management, e.g. in terms of early blood group analysis and the possible automation of a reservation at the blood bank. It is also advantageous to be able to make predictions with as little information as possible using data from the specific department. For example, when transferring patients from surgery to the ICU, transfer errors can occur in exceptional cases, which could be compensated for with such an algorithm with regard to transfusions. A further and possibly main benefit could be knowing which patient does not require a blood transfusion. If it can be predicted that the patient will not require a transfusion and if a bed in the ICU is urgently needed for another patient, a patient could be transferred to the normal ward earlier. Of course, all the facts would have to be considered, and the prediction algorithm would have to be very reliable. Finally, such an algorithm could simply be added to the information system as a decision support system that provides alarms to staff, if necessary.
Variable importance
The list of the most important variables included in the XGBoost model is aligned with the clinical guidelines. The hemoglobin within the red blood cells binds oxygen and carries it to the cells. The hemoglobin levels determine the blood’s oxygen-carrying capacity. When hemoglobin levels are low, named anemia, the blood’s ability to transport oxygen to tissues is reduced. Thus, hemoglobin measurements serve as a valuable indicator of a patient’s readiness for surgery and recovery progression post-surgery. Hematocrit quantifies the percentage of blood volume that comprises RBC. A decrease in hematocrit values can be indicative of anemia. Monitoring hematocrit values, therefore, provides additional confirmation of a patient’s anemic status, complementing the insights taken from hemoglobin measurements. The platelet count plays a crucial role in coagulation, hence forming an integral part of the body’s defense against excessive bleeding. A reduced platelet count could signify a heightened risk of bleeding, an important consideration in the surgical context. Lastly, heart rate serves as a direct measure of cardiac rhythm and an indicator of cardiovascular function and overall health status. An elevated heart rate might suggest physiological stress or compensatory responses to conditions such as anemia.
Each of these variables measures a unique aspect of the body’s physiological response to surgical interventions. Taken together, these variables constitute a comprehensive physiological profile that is invaluable for predicting blood transfusion risks in surgical patients.
Limitations and future directions
While the results are promising, this study has some limitations. First, the dataset’s retrospective nature may introduce inherent biases and limit the generalizability of the findings. Future research could involve a larger and more diverse patient cohort to validate and extend our findings. Moreover, incorporating additional clinical variables and patient-specific factors may enhance the predictive accuracy of the models further.
Causal inference aims to determine the actual effect of a particular factor or intervention on an outcome, rather than just identifying associations. This is especially relevant in clinical settings where understanding the true causal relationships can significantly influence treatment decisions and patient care strategies [19]. In this study, however, we purely focused on predictive performance, which is not equivalent to causal inference, but is sufficient for the use case.
Another limitation of our study is that we did not directly account for BTs occurred during surgeries. These intraoperative transfusions can influence the postoperative BTs. While we attempted to indirectly account for this by including data up to six hours before ICU admission, which may encompass perioperative data, this approach does not precisely isolate the impact of intraoperative transfusions. Therefore, our model might not fully capture the effects of BTs administered in the OR. This limitation highlights the need for future research to integrate comprehensive perioperative data to enhance the predictive accuracy of BTs during ICU stays.
Conclusion
With this study, we showed the feasibility of using machine learning to predict blood transfusions (BT) in patients admitted to ICU after any kind of surgery. We also showed an increasing prediction performance with increasing data available after time the patients stay at the ICU. Challenges remain, particularly regarding the data imbalance.
Data availability
The authors will make available any data that is pertinent to this study upon a specific request, with no limitations. The analysis is based on data from the Amsterdam University Medical Centers database (UMCdb) version 1.0.2, which is accessible as described in [18].
Abbreviations
- /min:
-
Per minute
- °C:
-
Degree Celsius
- AUROC:
-
Area under the receiver operating characteristic curve
- AUPRC:
-
Area under the precision-recall curve
- bpm:
-
Beats per minute
- BT:
-
Blood transfusion
- DBP:
-
Diastolic blood pressure
- EHRs:
-
Electronic health records
- FPR:
-
False positive rate
- Hb:
-
Hemoglobin
- HCO3 :
-
Bicarbonate
- Ht:
-
Hematocrit
- ICU:
-
Intensive care unit
- IQR:
-
Interquartile range
- L:
-
Liter
- LR:
-
Logistic regression
- MAP:
-
Mean arterial pressure
- Max:
-
Maximum
- MBP:
-
Mean blood pressure
- Min:
-
Minimum
- ML:
-
Machine learning
- mmHg:
-
Millimeters of mercury
- mmol/l:
-
Millimoles per liter
- MCC:
-
Matthews Correlation Coefficient
- MV:
-
Mechanical ventilation
- NIDBP:
-
Non-invasive diastolic blood pressure
- NIMBP:
-
Non-invasive mean blood pressure
- NISBP:
-
Non-invasive systolic blood pressure
- NPV:
-
Negative predictive value
- PaO2 :
-
Partial pressure of oxygen
- pH:
-
Potential hydrogen
- PPV:
-
Positive predictive value
- RBC:
-
Red blood cell
- ROC:
-
Receiver operating characteristic
- RR:
-
Respiratory rate
- SBP:
-
Systolic blood pressure
- SHAP:
-
SHapley Additive exPlanations
- SD:
-
Standard deviation
- SpO2 :
-
Oxygen saturation
- TPR:
-
True positive rate
- XGBoost:
-
Extreme gradient boosting
References
Wu W-C, Trivedi A, Friedmann PD, Henderson WG, Smith TS, Poses RM, et al. Association between Hospital Intraoperative Blood Transfusion Practices for Surgical Blood loss and Hospital Surgical Mortality Rates. Ann Surg. 2012;255:708–14.
Liu ZQ, Wu HX, Cheng S, Liu XQ, Wang CL, Cao MH. Unnecessary blood transfusion prolongs length of Hospital Stay of patients who Undergo Free Fibular Flap Reconstruction of Mandibulofacial defects: a Propensity score–matched study. J Oral Maxillofac Surg. 2020;78:2316–27.
Wang C, Han Z, Wang M, Hu C, Ji F, Cao M, et al. Infusion management associated with prolonged length of stay following free flap reconstruction of head and neck defects: a propensity score matching study. J Stomatol Oral Maxillofac Surg. 2022;123:e899–905.
Zhang Q, Gao Y, Tian Y, Gao S, Diao X, Ji H, et al. A transfusion risk stratification score to facilitate quality management in cardiopulmonary bypass. Transfus (Paris). 2023;63:1495–505.
Klein AA, Collier T, Yeates J, Miles LF, Fletcher SN, Evans C, et al. The ACTA PORT-score for predicting perioperative risk of blood transfusion for adult cardiac surgery. Br J Anaesth. 2017;119:394–401.
Hayn D, Kreiner K, Ebner H, Kastner P, Breznik N, Rzepka A, et al. Development of Multivariable models to predict and Benchmark transfusion in elective surgery supporting patient blood management. Appl Clin Inf. 2017;08:617–31.
Cifuentes J, Yao Y, Yan M, Zheng B. Blood transfusion prediction using restricted Boltzmann machines. Comput Methods Biomech Biomed Engin. 2020;23:510–7.
Feng Y, Xu Z, Sun X, Wang D, Yu Y. Machine learning for predicting preoperative red blood cell demand. Transfus Med. 2021;31:262–70.
De La Garza Ramos R, Hamad MK, Ryvlin J, Krol O, Passias PG, Fourman MS, et al. An Artificial neural network model for the prediction of Perioperative Blood transfusion in adult spinal deformity surgery. J Clin Med. 2022;11:4436.
Huang X, Wang Y, Chen B, Huang Y, Wang X, Chen L, et al. Ability of a machine learning Algorithm to Predict the need for Perioperative Red Blood cells transfusion in pelvic fracture patients: a Multicenter Cohort Study in China. Front Med. 2021;8:694733.
Tschoellitsch T, Böck C, Mahečić TT, Hofmann A, Meier J. Machine learning-based prediction of massive perioperative allogeneic blood transfusion in cardiac surgery. Eur J Anaesthesiol. 2022;39:766–73.
Wang Z, Zhe S, Zimmerman J, Morrisey C, Tonna JE, Sharma V, et al. Development and validation of a machine learning method to predict intraoperative red blood cell transfusions in cardiothoracic surgery. Sci Rep. 2022;12:1355.
Zhang J, Jiang L, Zhu X. A machine learning-modified Novel Nomogram to Predict Perioperative Blood transfusion of total gastrectomy for gastric Cancer. Front Oncol. 2022;12:826760.
Levi R, Carli F, Arévalo AR, Altinel Y, Stein DJ, Naldini MM, et al. Artificial intelligence-based prediction of transfusion in the intensive care unit in patients with gastrointestinal bleeding. BMJ Health Care Inf. 2021;28:e100245.
Shung D, Huang J, Castro E, Tay JK, Simonov M, Laine L, et al. Neural network predicts need for red blood cell transfusion for patients with acute gastrointestinal bleeding admitted to the intensive care unit. Sci Rep. 2021;11:8827.
Walczak S, Velanovich V. Prediction of perioperative transfusions using an artificial neural network. PLoS ONE. 2020;15:e0229450.
Mitterecker A, Hofmann A, Trentino KM, Lloyd A, Leahy MF, Schwarzbauer K, et al. Machine learning–based prediction of transfusion. Transfus (Paris). 2020;60:1977–86.
Thoral PJ, Peppink JM, Driessen RH, Sijbrands EJG, Kompanje EJO, Kaplan L, et al. The Amsterdam University Medical Centers Database (AmsterdamUMCdb) Example*. Crit Care Med. 2021;49:e563–77. Sharing ICU Patient Data Responsibly Under the Society of Critical Care Medicine/European Society of Intensive Care Medicine Joint Data Science Collaboration:.
Zhang Z, Jin P, Feng M, Yang J, Huang J, Chen L, et al. Causal inference with marginal structural modeling for longitudinal data in laparoscopic surgery: a technical note. Laparosc Endosc Robot Surg. 2022;5:146–52.
Funding
Open Access funding enabled and organized by Projekt DEAL.
This work was supported by the German Ministry of Education and Research (BMBF), Berlin (#01ZZ2005).
Author information
Authors and Affiliations
Contributions
L.H., M.K., S.S., S.G., and S.Z. initiated the project. L.H. provided funding. S.S. performed the analysis. S.S. and M.K. substantially contributed to the final model and manuscript. L.H., M.K., and L.S. provided constructive comments and discussion on the project. All authors carefully read and commented on the manuscript.
Corresponding author
Ethics declarations
Ethics approval and consent to participate
The data extracted from UMCdb, which is publicly available and does not require individual informed consent, are de-identified in compliance with the Health Insurance Portability and Accountability Act and the European General Data Protection Regulation. The steering group of AmsterdamUMCdb has granted permission for the use of its data by third parties for research purposes, as per the data use agreement. This research, conducted on anonymized data, is exempt from the requirement of ethical review (see [18]).
Consent for publication
Not applicable.
Competing interests
The authors declare no competing interests.
Additional information
Publisher’s note
Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
Electronic supplementary material
Below is the link to the electronic supplementary material.
Rights and permissions
Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article’s Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article’s Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/.
About this article
Cite this article
Sheikhalishahi, S., Goss, S., Seidlmayer, L.K. et al. Predicting blood transfusion demand in intensive care patients after surgery by comparative analysis of temporally extended data selection. BMC Med Inform Decis Mak 24, 397 (2024). https://doiorg.publicaciones.saludcastillayleon.es/10.1186/s12911-024-02800-z
Received:
Accepted:
Published:
DOI: https://doiorg.publicaciones.saludcastillayleon.es/10.1186/s12911-024-02800-z