Skip to main content

Development and validation of a nomogram for blood transfusion during intracranial aneurysm clamping surgery: a retrospective analysis

Abstract

Purpose

Intraoperative blood transfusion is associated with adverse events. We aimed to establish a machine learning model to predict the probability of intraoperative blood transfusion during intracranial aneurysm surgery.

Methods

Patients, who underwent intracranial aneurysm surgery in our hospital between January 2019 and December 2021 were enrolled. Four machine learning models were benchmarked and the best learning model was used to establish the nomogram, before conducting a discriminative assessment.

Results

A total of 375 patients were included for analysis in this model, among whom 108 received an intraoperative blood transfusion during the intracranial aneurysm surgery. The least absolute shrinkage selection operator identified six preoperative relative factors: hemoglobin, platelet, D-dimer, sex, white blood cell, and aneurysm rupture before surgery. Performance evaluation of the classification error demonstrated the following: K-nearest neighbor, 0.2903; logistic regression, 0.2290; ranger, 0.2518; and extremely gradient boosting model, 0.2632. A nomogram based on a logistic regression algorithm was established using the above six parameters. The AUC values of the nomogram were 0.828 (0.775, 0.881) and 0.796 (0.710, 0.882) in the development and validation groups, respectively.

Conclusions

Machine learning algorithms present a good performance evaluation of intraoperative blood transfusion. The nomogram established using a logistic regression algorithm showed a good discriminative ability to predict intraoperative blood transfusion during aneurysm surgery.

Peer Review reports

Introduction

Blood transfusion is very common in patients undergoing major surgery. Blood transfusion can save lives by increasing tissue perfusion and oxygen delivery in patients with massive blood loss but can also result in transfusion-related adverse events, including fever, infection, acute lung injury, coagulation disorder, and immune dysfunctions [1,2,3]. Previous studies have demonstrated that transfusion is an independent relative factor for perioperative complications in patients undergoing cerebral aneurysm surgery [4], while angiography has confirmed the presence of vasospasm after blood transfusion [5]. Consequently, early identification of patients who require blood transfusion before surgery is both useful and necessary for preoperative preparation and implementing preventive strategies.

Traditionally, the serum hemoglobin (HB) level is the most frequently used indicator for blood transfusion [6]. Guidelines recommend that patients should receive transfusion in the setting of profound anemia [7, 8]. However, the guidelines are limited as they do not refer to other perioperative risk factors including age, sex, disease severity, procedure type, and pre-existing co-morbidity [9]. For example, while an HB of 80 g/L is acceptable for a young adult, it is not for a geriatric patient with ischemic coronary artery disease. Thus, HB should not be the only indicator for blood transfusion. However, an effective formula to predict the risk of transfusion is still lacking. In recent years, machine learning methods have been widely used to establish robust predictive models in the perioperative period, often without pitfalls and restrictions [10, 11]. such prediction models could help physicians to acutely identify the need for intraoperative blood transfusion preoperatively and enhance patient safety, reduce costs, and avoid transfusion-related complications. Thus, in the current study, we aimed to establish a nomogram to predict the probability of intraoperative blood transfusion in patients undergoing aneurysm surgery.

Materials and methods

Ethics statement and patient selection

The study was performed in adherence with the Declaration of Helsinki and its later amendments. The study was approved by the Ethics Committee of Xiangyang Central Hospital, affiliated with Hubei University of Arts and Science, and the requirement for written informed consent was waived, and the personal identifiers were removed before the data analysis.

We retrospectively scrutinized a total of 390 patients who underwent intracranial aneurysm clipping surgery in our hospital from January 2019 to December 2021. Variables with more than 20% missing values or less than 10 cases were eliminated. Finally, seven patients were excluded for previous intracranial surgery at the same site and eight patients were excluded due to taking oral anticoagulants before surgery. Therefore, a total of 375 patients who underwent intracranial aneurysm clipping surgery were included in the analysis. The aneurysm diagnosis was insured using cerebral angiography. Blood transfusion was defined as receiving packed red blood cells intraoperatively. Intraoperative transfusion was conducted when the HB level was less than 70 g/L in stable patients and less than 90 g/L in patients with unstable hemodynamics. The decision for blood transfusion was discussed between the anesthetist and surgeon.

Risk factors

We collected and analyzed the following factors of the subjects: general information (sex, age, weight, previous cerebral disease, diabetes, cardiovascular disease, pulmonary disease, renal disease, liver disease, and diabetes mellitus [DM]), characteristics of the aneurysm (one or multi-site aneurysm, and whether it ruptured before surgery), characteristics of the patient status (American Society of Anesthesiologists [ASA], and heart function), and laboratory test results (white blood cell [WBC], HB, platelet [PLT], thromboplastin time [PT], activated partial thromboplastin time [APTT], fibrinogen, D-dimer, total protein [TP], and albumin [ALB]), intraoperative blood transfusion volume and vasopressor utility, postoperative mechanical ventilation duration, and length of postoperative hospital stay.

Statistical analysis

Data imputation, standardization, and feature selection

First, the entire data were split into the development and validation groups at a ratio of 7:3 (Fig. 1). The missing data were imputed using recursive partitioning and the regression trees method with 10-fold cross-validation, followed by standardization of the variables to the same range of values with the max-min method before modeling in the development and validation groups [12]. The least absolute shrinkage and selection operator (LASSO; glmnet package in R with α = 1) classifier with 10-fold cross-validation was used to reduce the data set to its most meaningful features [13]. LASSO shrinks the coefficients, and those features with a coefficient of zero were excluded from the model establishment process. Variables entered before λ1se were chosen for the model establishment and evaluation process.

Fig. 1
figure 1

Flow chart of the trial. All data were split into the development and validation groups at a ratio of 7:3. The machine learning methods were performed with the training group data using a nested resampling method, in which the inner loop data were split at a 7:3 ratio with 1000 iterations to result in the best hyperparameter. Then, the best hyperparameters were used to train the machine model and tested in outer loop data with a 5-fold cross validation (CV), which resulted in a balanced performance evaluation. The machine learning that had the best performance evaluation was selected to establish the prediction model with the development data, before evaluating the prediction model with the validation data

Machine learning algorithms

Four algorithms with nested resample methods were applied to build models to predict intraoperative blood transfusion, namely the K-nearest neighbor algorithm (KNN), logistic regression model (LR), ranger (also called random forest), and extremely gradient boosting machine (xgboost) (Fig. 1). The KNN, which is based on analogical reasoning, stores all of the training data and classifies the new data point based on similarity measures [14]. Ranger and xgboost are tree-based ensemble algorithms. Ranger generates multiple decision tree models by bootstrap samples and makes decisions through averaging or majority voting [12]. Xgboost builds a regression or classification tree model from the beginning and constructs the new models to maximally reduce the negative gradient of the loss function [15].

Machine learning algorithm selection

The machine learning tuning process and performance evaluation used a nested resampling method with the development data. Briefly, in the inner loop, all of the possible combinations of parameters were tried to obtain optimal hyper-parameters, and then the best hyperparameters were used to train the machine model before the model performance was evaluated in the outer loop. The inner loop used a holdout cross-validation (CV; ratio: 7:3) with 1000 iterations, and the outer loop used a 5-fold CV, which results in a balanced performance evaluation. We selected classification error (CE = (false negative + false positive)/(true negative + true positive + false negative + false positive)) to evaluate the model performance.

Nomogram development and assessment

The machine learning model with the best performance was chosen for nomogram establishment and assessment. We then established a nomogram of intraoperative blood transfusion using the development data and assessed the discriminative ability in both the development and validation sets.

The quantitative data were expressed as the mean and standard division (SD) if they were normally distributed, and the count data were expressed as numbers and proportions. The quantitative data were analyzed using the unpaired t-test, and the count data were analyzed using the χ2 test. The discriminative ability of the nomogram for predicting a blood transfusion was assessed using the area under the curve (AUC) of the receiver operating characteristic (ROC) curve. Statistical analysis was performed using R software (version 4.2.1). A P < 0.05 indicated the statistical difference.

Results

Patient demographics

The patient baseline characteristics are shown in Table 1. A total of 375 patients were enrolled for analysis, among whom 108 (25 man and 83 women, P < 0.001) patients received a blood transfusion. More patients who had ruptured aneurysms before surgery received blood transfusions compared with non-ruptured patients (85/23 vs. 143/124, P < 0.001). There were no significant differences between the transfused and non-transfused groups in terms of a previous history of cerebral disease, cardiovascular disease, pulmonary disease, renal disease, and DM (P > 0.05). Patients with ASA III-V received blood transfusions more frequently compared with those with ASA I-II (P < 0.001), while heart function did not affect blood transfusion (P > 0.05). Patients who received blood transfusion had lower levels of HB and PLT and a higher level of D-dimer than those who did not receive a blood transfusion (P < 0.001). Laboratory results of WBC, PT, APTT, fibrinogen, TP, and ALB were not significantly different between the transfusion and non-transfused groups before surgery (P > 0.05). Patients who received blood transfusion had a higher incidence of vasopressor utility and longer postoperative mechanical ventilation duration than those who did not receive a blood transfusion (P < 0.05), while the length of postoperative hospital stay was not significantly different between the two groups (P > 0.05).

Table 1 Patients baseline characteristics

Feature selection and machine learning model performance evaluation

LASSO was performed to decrease the model’s complexity and reduce redundant or irrelevant data in the training group. Six variables, namely HB, ruptured aneurysm, D-dimer, PLT, sex, and WBC, were entered before λ1se and were selected for model establishment (Fig. 2A and B).

Fig. 2
figure 2

Results of the least absolute shrinkage and selection operator analysis of all data are shown in (A) and (B). (A) The different values of λ are shown on the x-axis, where each line represents one of the explanatory variables and its role in the model. The plots demonstrate that to what extent variables that enter the model influence the response variable. A variable that enters the model earlier influences the model more than that enters the model later. (B) The different values of λ are shown on the x-axis, while the binary deviance is shown on the y-axis. λ min to 1se indicates the acceptable variable chosen. Six features, namely HB, ruptured, D-dimer, PLT, sex, and WBC, were entered before the λ1se line

The balanced performance evaluation with nested resampling results in the training set showed that the CE was 0.2903 of the KNN, 0.2290 of logistic regression, 0.2518 of ranger, and 0.2632 of the extremely gradient boosting model, respectively, with no statistical difference between the four algorithms (P = 0.0738, F = 6.9406, Fig. 3). The CE, AUC, accuracy, and specificity for each machine learning method are depicted in Table 2.

Fig. 3
figure 3

Classification error for evaluating the discrimination power of various machine learning algorithms. The classification values for intraoperative blood transfusion were 0.2903 of the K-nearest neighbor, 0.2290 of logistic regression, 0.2518 of ranger, and 0.2632 of the extremely gradient boosting model, respectively

Table 2 Performance evaluation of four machine learning algorithms

Nomogram establishment and assessment

The LR model was used to establish the nomogram with the development data. The nomogram was established based on the six above variables to predict intraoperative blood transfusion in patients undergoing intracranial aneurysm clipping surgery (Fig. 4). The variables are shown in rows 2 to 7, in which the values are acquired from the patient. The first row is the point assigned to each variable’s measurement, and the assigned points for all of the variables are then summed, with the total can be located on the line of the total points. After locating the total points, a vertical line is drawn down to the bottom line to obtain the predicted probability of transfusion. The AUC values of the nomogram for intraoperative blood transfusion prediction were 0.828 (0.775, 0.881) and 0.796 (0.710, 0.882) in the development (Fig. 5A) and validation (Fig. 5B) groups, respectively.

Fig. 4
figure 4

Nomogram to predict the probability of intraoperative blood transfusion in the patients who underwent intracranial aneurysm surgery. For example, a female patient with a ruptured aneurysm, D-dimer (8 mg/L), WBC (10 × 1012), PLT (150 × 109), and HB (100 g/L), had a total score of 342 in terms of these variables and a predicted probability of intraoperative blood transfusion of 85.8%. WBC, White blood cell; HB, Hemoglobin; PLT, Platelet

Fig. 5
figure 5

ROC curves for evaluating the discrimination power of the nomogram based on logistic regression algorithms. The AUC values for intraoperative blood transfusion were 0.828 (0.775, 0.881) and 0.796 (0.710, 0.882) in the development (A) and validation (B) groups, respectively

Discussion

In the present study, we identified six preoperative risk factors for intraoperative blood transfusion, namely HB, D-dimer, PLT, ruptured aneurysm, sex, and WBC. Then, we used the nested resampling method to evaluate the balanced performance of various machine learning algorithms with the six variables, and observed no statistical difference between the four models. We established a nomogram with the LR algorithm to predict the risk of intraoperative blood transfusion in aneurysm surgery. The performance of the established nomogram showed a good discriminative ability in both the development and validation sets.

The feature selection process with LASSO removes redundant or irrelevant features in the data with limited loss of information, while the fewer variables increase the interpretation and application of the model. The selection process of the shrinking ability of this operator depends on modifying the absolute value of the coefficient of functions. Features with non-zero coefficient values were chosen for analysis. Machine learning algorithms establish complex models and make accurate decisions when given relevant data. Some machine learning algorithms have been used within the anesthesiology and pain fields, such as for predicting mortality, and kidney injury after cardiac surgery [16, 17], predict postoperative pain, or identify the need for pain consults [11, 18]. These explorations are primarily focused on the postoperative period, while preoperative data acquisition for predicting intraoperative blood transfusion is infrequent [19]. In this study, we used four machine learning methods and acquired a balanced performance evaluation, with no statistical difference between the four models.

Considering the good interpretability and generalizability, we established a nomogram using the LR algorithm and performed an ROC curve analysis to assess the performance of the predictive model. The AUC in the development and validation groups was consistent with the machine learning results, indicating good performance of the model. Generally, the model used in this study offered a good screening method to calculate a patient’s probability of requiring intraoperative blood transfusion during intracranial aneurysm surgery. The benefit of predicting intraoperative blood transfusion may allow clinicians to prepare blood-saving strategies more adequately, tailor their surgery more carefully, and ultimately reduce the complications greatly.

The prediction nomogram for blood transfusion is useful when ordering allogeneic blood and preparing preoperative autologous blood preoperatively. The use of the nomogram could result in substantial savings by decreasing allogenic blood consummation. Patients with a high-risk score (≥ 0.5) to receive a perioperative blood transfusion should be encouraged to use the autologous blood donation strategy, which would minimize the possibility of an allogenic transfusion. Studies have shown that autologous blood predisposition before surgery is very effective in decreasing perioperative allogenic blood transfusion [20, 21]. Moreover, acute intraoperative hemodilution and salvage have been shown to significantly increase postoperative hemoglobin levels and improve patients’ outcomes [22]. Additionally, patients with a low preoperative HB level tend to have a high nomogram score and should be encouraged to take preoperative pharmacological treatments, such as erythropoietin or antifibrinolytic management, or intraoperative self-blood collection.

Traditionally, physicians decide to perform a blood transfusion largely based on HB levels [23,24,25]. However, some physicians have reported significant differences in the HB thresholds for transfusion [26, 27]. Therefore, we established a nomogram by combining patient characteristics other than serum HB levels. A particular strength of this study is that it accounted for a wide range of preoperative variables associated with the receipt of blood transfusions. PLT is a crucial constituent of clotting, and a low PLT count has been identified as an independent risk factor of intraoperative blood transfusion during abdominal aneurysm surgery [28]. Moreover, a PLT count < 130 × 109/L has a 3.9-fold relative risk of transfusion when compared with a PLT > 130 × 109/L. Each 10 × 109/L increase in platelet count was associated with an 11% decrease in severe bleeding risk [29].

A high D-dimer level is another determinant for intraoperative blood transfusion during aneurysm surgery. D-dimer is an indicator of coagulation and fibrinolysis and is suggestive of a fibrinolysis profile in the body [30]. High D-dimer levels may be attributed to the following [31]: a ruptured aneurysm activating the coagulation system, resulting in coagulopathy and massive bleeding during surgery; and a ruptured aneurysm increasing intracranial pressure, increasing the duration and difficulty of the surgery. Further, our results suggest that WBC is another risk factor for intraoperative blood transfusion; this may be attributed to the systemic inflammatory response activating platelets, coagulation, and fibrinolysis, as well as up-regulating platelet adhesion receptors and increasing monocyte-platelet conjugates, all of which result in coagulation disorder and the consumption of constituents [32]. Lastly, our results identified that being female is a risk factor for perioperative blood transfusion.

The study has several limitations that should be considered when interpreting the present results. As with all retrospective studies, there may be some unknown confounders that were not referred to in the analysis. However, we collected key preoperative characteristics in an integrated online system, thereby minimizing the likelihood of selection bias.

Conclusions

HB, platelet, D-dimer, sex, WBC, and aneurysm rupture before surgery are relevant factors for intraoperative blood transfusion during aneurysm surgery. Machine learning algorithms with nested resample methods result in a good performance evaluation. The described nomogram, using a logistic regression algorithm has a good discriminative ability to predict intraoperative blood transfusion during aneurysm surgery.

Data Availability

The data that support the findings of this study are available from the corresponding author upon reasonable request.

Abbreviations

APTT:

Activated partial thromboplastin time

AUC:

Area under the curve

ASA:

American Society of Anesthesiologists

CE:

Classification error

CV:

Cross-validation

DM:

Diabetes mellitus

xgboost:

Extremely gradient boosting machine

HB:

Hemoglobin

KNN:

K-nearest neighbor algorithm

LASSO:

Least absolute shrinkage and selection operator

LR:

Logistic regression model

PLT:

Platelet

PT:

Prothrombin time

ROC:

Receiver operating characteristic

TP:

Total protein

ALB:

Albumin

WBC:

White blood cell

References

  1. Roberson RS, Bennett-Guerrero E. Impact of red blood cell transfusion on global and regional measures of oxygenation. Mt Sinai J Med. 2012;79(1):66–74.

    Article  PubMed  PubMed Central  Google Scholar 

  2. Sharma S, Sharma P, Tyler LN. Transfusion of blood and blood products: indications and complications. AM FAM PHYSICIAN. 2011;83(6):719–24.

    PubMed  Google Scholar 

  3. Dasararaju R, Marques MB. Adverse effects of transfusion. Cancer Control. 2015;22(1):16–25.

    Article  PubMed  Google Scholar 

  4. Seicean A, Alan N, Seicean S, Neuhauser D, Selman WR, Bambakidis NC. Risks associated with preoperative anemia and perioperative blood transfusion in open surgery for intracranial aneurysms. J NEUROSURG. 2015;123(1):91–100.

    Article  PubMed  Google Scholar 

  5. Naidech AM, Drescher J, Ault ML, Shaibani A, Batjer HH, Alberts MJ. Higher hemoglobin is associated with less cerebral infarction, poor outcome, and death after subarachnoid hemorrhage. NEUROSURGERY. 2006;59(4):775–9.

    Article  PubMed  Google Scholar 

  6. Carson JL, Stanworth SJ, Roubinian N, Fergusson DA, Triulzi D, Doree C, Hebert PC. Transfusion thresholds and other strategies for guiding allogeneic red blood cell transfusion. Cochrane Database Syst Rev. 2016;10:D2042.

    Google Scholar 

  7. Carson JL, Guyatt G, Heddle NM, Grossman BJ, Cohn CS, Fung MK, Gernsheimer T, Holcomb JB, Kaplan LJ, Katz LM, et al. Clinical practice guidelines from the AABB: Red Blood Cell Transfusion Thresholds and Storage. JAMA. 2016;316(19):2025–35.

    Article  PubMed  Google Scholar 

  8. Carson JL, Grossman BJ, Kleinman S, Tinmouth AT, Marques MB, Fung MK, Holcomb JB, Illoh O, Kaplan LJ, Katz LM, et al. Red blood cell transfusion: a clinical practice guideline from the AABB*. ANN INTERN MED. 2012;157(1):49–58.

    Article  PubMed  Google Scholar 

  9. Mahmood E, Matyal R, Mueller A, Mahmood F, Tung A, Montealegre-Gallegos M, Schermerhorn M, Shahul S. Multifactorial risk index for prediction of intraoperative blood transfusion in endovascular aneurysm repair. J VASC SURG. 2018;67(3):778–84.

    Article  PubMed  Google Scholar 

  10. Liang S, Pang Z, Zhou N, Liu Z, Guo Q, Huang J, Zou W. Development and validation of a prediction model for catheter-related bladder discomfort: a prospective observational study. Br J Anaesth. 2022;129(6):e147–9.

    Article  PubMed  Google Scholar 

  11. Lotsch J, Ultsch A, Kalso E. Prediction of persistent post-surgery pain by preoperative cold pain sensitivity: biomarker development with machine-learning-derived analysis. Br J Anaesth. 2017;119(4):821–9.

    Article  CAS  PubMed  Google Scholar 

  12. Segev N, Harel M, Mannor S, Crammer K, El-Yaniv R. Learn on source, refine on target: a model transfer learning Framework with Random forests. IEEE Trans Pattern Anal Mach Intell. 2017;39(9):1811–24.

    Article  PubMed  Google Scholar 

  13. Zhang S, Zhu F, Yu Q, Zhu X. Identifying DNA-binding proteins based on multi-features and LASSO feature selection. Biopolymers. 2021;112(2):e23419.

    Article  CAS  PubMed  Google Scholar 

  14. Zeng P, Zhao Y, Zhang L, Huang S, Chen F. Rare variants detection with kernel machine learning based on likelihood ratio test. PLoS ONE. 2014;9(3):e93355.

    Article  PubMed  PubMed Central  Google Scholar 

  15. Guo CY, Chang KH. A Novel Algorithm to Estimate the Significance Level of a Feature Interaction Using the Extreme Gradient Boosting Machine.Int J Environ Res Public Health2022, 19(4).

  16. Benedetto U, Sinha S, Lyon M, Dimagli A, Gaunt TR, Angelini G, Sterne J. Can machine learning improve mortality prediction following cardiac surgery? Eur J Cardiothorac Surg. 2020;58(6):1130–6.

    Article  PubMed  Google Scholar 

  17. Thongprayoon C, Hansrivijit P, Bathini T, Vallabhajosyula S, Mekraksakit P, Kaewput W, Cheungpasitporn W. Predicting Acute Kidney Injury after Cardiac Surgery by Machine Learning Approaches.J CLIN MED2020, 9(6).

  18. Parthipan A, Banerjee I, Humphreys K, Asch SM, Curtin C, Carroll I, Hernandez-Boussard T. Predicting inadequate postoperative pain management in depressed patients: a machine learning approach. PLoS ONE. 2019;14(2):e210575.

    Article  Google Scholar 

  19. Kendale S, Kulkarni P, Rosenberg AD, Wang J. Supervised Machine-learning Predictive Analytics for Prediction of Postinduction Hypotension. ANESTHESIOLOGY 2018, 129(4):675–688.

  20. Pinto MA, Chedid MF, Sekine L, Schmidt AP, Capra RP, Prediger C, Prediger JE, Grezzana-Filho TJ, Kruel CR. Intraoperative cell salvage with autologous transfusion in liver transplantation. World J Gastrointest Surg. 2019;11(1):11–8.

    Article  PubMed  PubMed Central  Google Scholar 

  21. Pawaskar A, Salunke AA, Kekatpure A, Chen Y, Nambi GI, Tan J, Sonawane D, Pathak S. Do autologous blood transfusion systems reduce allogeneic blood transfusion in total knee arthroplasty? Knee Surg Sports Traumatol Arthrosc. 2017;25(9):2957–66.

    Article  PubMed  Google Scholar 

  22. Chen P, Wang Y, Zhang XH, Kang DZ, Lin XZ, Lin QS. The Use of Acute Normovolemic Hemodilution in clipping surgery for Aneurysmal Subarachnoid Hemorrhage. WORLD NEUROSURG. 2021;148:e209–17.

    Article  PubMed  Google Scholar 

  23. Roubinian NH, Murphy EL, Swain BE, Gardner MN, Liu V, Escobar GJ. Predicting red blood cell transfusion in hospitalized patients: role of hemoglobin level, comorbidities, and illness severity. BMC HEALTH SERV RES. 2014;14:213.

    Article  PubMed  PubMed Central  Google Scholar 

  24. Sima CS, Jarnagin WR, Fong Y, Elkin E, Fischer M, Wuest D, D’Angelica M, DeMatteo RP, Blumgart LH, Gonen M. Predicting the risk of perioperative transfusion for patients undergoing elective hepatectomy. ANN SURG. 2009;250(6):914–21.

    Article  PubMed  Google Scholar 

  25. Kim Y, Bagante F, Gani F, Ejaz A, Xu L, Wasey JO, Johnson DJ, Frank SM, Pawlik TM. Nomogram to predict perioperative blood transfusion for hepatopancreaticobiliary and colorectal surgery. Br J Surg. 2016;103(9):1173–83.

    Article  CAS  PubMed  Google Scholar 

  26. Schneider C, Boddy AP, Fukuta J, Groom WD, Streets CG. Predicting blood transfusion in patients undergoing minimally invasive oesophagectomy. INT J SURG. 2014;12(12):1342–7.

    Article  PubMed  Google Scholar 

  27. Janny S, Eurin M, Dokmak S, Toussaint A, Farges O, Paugam-Burtz C. Assessment of the external validity of a predictive score for blood transfusion in liver surgery. HPB (Oxford). 2015;17(4):357–61.

    Article  PubMed  Google Scholar 

  28. Ho P, Ting AC, Cheng SW. Blood loss and transfusion in elective abdominal aortic aneurysm surgery. ANZ J SURG. 2004;74(8):631–4.

    Article  PubMed  Google Scholar 

  29. Xu DM, Chen M, Zhou FD, Zhao MH. Risk factors for severe bleeding complications in Percutaneous Renal Biopsy. AM J MED SCI. 2017;353(3):230–5.

    Article  PubMed  Google Scholar 

  30. Fukuda H, Lo B, Yamamoto Y, Handa A, Yamamoto Y, Kurosaki Y, Yamagata S. Plasma D-dimer may predict poor functional outcomes through systemic complications after aneurysmal subarachnoid hemorrhage. J NEUROSURG. 2017;127(2):284–90.

    Article  PubMed  Google Scholar 

  31. Behmanesh B, Gessler F, Adam E, Strouhal U, Won SY, Dubinski D, Seifert V, Konczalla J, Senft C. Efficacy of Intraoperative Blood Salvage in Cerebral Aneurysm Surgery.J CLIN MED2021, 10(24).

  32. Despotis GJ, Levine V, Goodnough LT. Relationship between leukocyte count and patient risk for excessive blood loss after cardiac surgery. CRIT CARE MED. 1997;25(8):1338–46.

    Article  CAS  PubMed  Google Scholar 

Download references

Acknowledgements

The authors wish to thank the Xiangyang Central Hospital and the patients for their support and involvement in our study.

Funding

This research was funded by grants from the Natural Science Foundation of Hubei (No.2019CB411) and Xiangyang, Hubei (No. 2021YL017). The funding bodies did not play any role in the design of the study and collection, analysis, and interpretation of data and in writing the manuscript.

Author information

Authors and Affiliations

Authors

Contributions

XRG designed and supervised the study; SX, LY, and FL collected the data; SX and XRG performed the statistical analysis and interpretation of data; XHY and XRG drafted the article; and XRG, XHY, and XPL, critically revised of the article. All authors agreed to be accountable for the content of the work and read and approved the final version of the manuscript.

Corresponding authors

Correspondence to Xihong Ye or Xingrui Gong.

Ethics declarations

Ethics approval and consent to participate

The risk posed by the study to subjects does not exceed the minimum risk. This study protocol was approved by the Ethics Committee of the Xiangyang Central Hospital, Affiliated Hospital of Hubei University of Arts and Science (2020-018). All methods were conducted following relevant guidelines and regulations. The Ethics Committee of the Xiangyang Central Hospital provided an exempt determination and waived the requirement for informed consent.

Competing interests

The authors declare no competing interests.

Consent for publication

Not applicable.

Additional information

Publisher’s Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

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/. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated in a credit line to the data.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Xiao, S., Liu, F., Yu, L. et al. Development and validation of a nomogram for blood transfusion during intracranial aneurysm clamping surgery: a retrospective analysis. BMC Med Inform Decis Mak 23, 71 (2023). https://doi.org/10.1186/s12911-023-02157-9

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12911-023-02157-9

Keywords