Skip to main content

Machine learning models to predict systemic inflammatory response syndrome after percutaneous nephrolithotomy

Abstract

Objective

The objective of this study was to develop and evaluate the performance of machine learning models for predicting the possibility of systemic inflammatory response syndrome (SIRS) following percutaneous nephrolithotomy (PCNL).

Methods

We retrospectively reviewed the clinical data of 337 patients who received PCNL between May 2020 and June 2022. In our study, 80% of the data were used as the training set, and the remaining data were used as the testing set. Separate prediction models based on the six machine learning algorithms were created using the training set. The predictive performance of each machine learning model was determined by the area under the receiver operating characteristic curve (AUC), accuracy, sensitivity and specificity using the testing set. We used coefficients to interpret the contribution of each variable to the predictive performance.

Results

Among the six machine learning algorithms, the support vector machine (SVM) delivered the best performance with accuracy of 0.868, AUC of 0.942 (95% CI 0.890–0.994) in the testing set. Further analysis using the SVM model showed that prealbumin contributed the most to the prediction of the outcome, followed by preoperative urine culture, systemic immune-inflammation (SII), neutrophil to lymphocyte ratio (NLR), staghorn stones, fibrinogen, operation time, preoperative urine white blood cell (WBC), preoperative urea nitrogen, hydronephrosis, stone burden, sex and preoperative lymphocyte count.

Conclusion

Machine learning-based prediction models can accurately predict the possibility of SIRS after PCNL in advance by learning patient clinical data, and should be used to guide surgeons in clinical decision-making.

Peer Review reports

Introduction

Kidney stones are one of the most common urological diseases, and its prevalence is reported to be increasing worldwide [1]. According to reports, Chinese adults have a 5.8% incidence rate of renal calculi, with approximately 1 in 17 adults currently diagnosed [1, 2]. Since the first report on percutaneous nephrolithotomy (PCNL) in 1976, it has gradually become the standard of care for patients with calculi larger than 2 cm, multiple or staghorn [3].

PCNL has certain advantages including minimal trauma, high stone clearance rates, short hospital stays and quick recovery. However, it also has several complications after surgery. Systemic inflammatory response syndrome (SIRS) is a common and serious complication associated with PCNL, with an incidence rate of 16.7-27.4% [4]. A urosepsis incidence between 0.3% and 4.7% can develop from postoperative SIRS if not diagnosed and treated early [5]. When sepsis progresses to septic shock or multiple organ failure, it causes high mortality rates and increased treatment costs.

Machine learning algorithms have increasingly been used to aid diagnosis, treatment, and automatic classification in medicine as statistical theory and computer technology have developed [6]. In the past studies, machine learning models has been uesd to predict the acute kidney injury after nephrectomy in patients with renal cell carcinoma and showed good predictive performance [7]. Machine learning algorithms was used to develop to predict the risk of incontinence after robot-assisted radical prostatectomy [8]. Due to the fact that machine learning algorithms show great potential in processing complex data sets, we should develop an efficient prediction model based on machine learning to identify patients with potential risk factors for post-PCNL SIRS and closely monitor their vital signs after surgery, which can significantly reduce the burden of false alarms. The main objective of this study was to analyze the influencing factors of SIRS after PCNL. Multiple machine learning algorithms were used to construct and verify the prediction model of SIRS after surgery. The performance of each machine learning model is compared, and the optimal prediction model is proposed.

Materials and methods

Patients

We retrospectively collected the clinical data of 337 patients who underwent PCNL in the urology department of the affiliated hospital of Qingdao University between May 2020 and June 2022 by a single surgeon. Patients were excluded from the analysis based on the following criteria: (a) a history of bilateral PCNL; (b) the presence of patients with tumors, blood system or immune system diseases; (c) congenital deformities such as polycystic kidney, horseshoe kidney and solitary kidney; and (d) missing data. This study complied with the principles of the Declaration of Helsinki and was conducted in accordance with the ethical standards of the medical ethics committee of our institution. The patient selection flow diagram was shown in Fig. 1.

Fig. 1
figure 1

Flow chart illustrating the process of patient enrollment

Data collection

The preoperative data on the patients included: age, sex, body mass index (BMI), preoperative white blood cell (WBC), neutrophil (N), lymphocyte (L), monocyte (M), platelet (PLT), hemoglobin (HB), neutrophil to lymphocyte ratio (NLR), platelet to lymphocyte ratio (PLR), lymphocyte to monocyte ratio (LMR), systemic immune-inflammation (SII, neutrophil count × platelet countn / lymphocyte count), preoperative serum creatinine, urea nitrogen, uric acid, cystatin, albumin, prealbumin, fibrinogen, stone burden (length × width × π × 0.25), urine WBC, urine nitrite, urine culture, and hydronephrosis. Intraoperative information included operation time. Postoperative information uniformly measured at 6 am on the first day after surgery included peripheral WBC count, blood pressure, heart rate, oxygenation, respiratory rate, and body temperature.

Patients with SIRS were diagnosed if they met two or more of the following four criteria: (a) leukocyte count < 4 × 109 cells/L or > 12 × 109 cells/L; (b) body temperature > 38 °C or < 36 °C; (c) heart rate > 90/min; and (d) respiratory rate > 20/min or PaCO2 < 32 mmHg [9].

Feature selection

Firstly, we conducted the statistical t-test, Mann–Whitney test and chi-square test for clinical characteristics to determine whether there are differences between the groups. Our analysis considered the feature significant when its two-tailed p-value was p < 0.05. Secondly, spearman correlation analysis was performed to reduce collinearity among features. To reduce the risk of overfitting, the least absolute shrinkage and selection operator (LASSO) algorithm was applied to select features with non-zero coefficient values.

Model building

To predict the occurrence of post-PCNL SIRS, we used six machine learning algorithms, including the support vector machine (SVM), light gradient boosting machine (LightGBM), eXtreme gradient boosting (XGBoost), k-nearest neighbor (KNN), random forest (RF) and Extra-Trees classifier. These algorithms cover a wide range of modeling methods, ensuring that we can capture complex patterns in our data and improve the accuracy of our predictions. SVM is suitable for high-dimensional data and small samples, and has good classification effect. LightGBM and XGBoost are integrated methods based on decision tree, which have excellent performance and fast training speed when dealing with complex data sets. As a simple nonparametric method, KNN is easy to understand and apply. Random forest and Extra-Trees enhance the robustness and stability of the model through the integration of multiple decision trees. Choosing these algorithms allows us to comprehensively evaluate the performance of different models in predicting SIRS, ensuring that we get the best prediction results.

The data were randomly categorized into training set (80%) and testing set (20%). The training set includes 216 patients without SIRS and 53 patients with SIRS, while the testing set includes 54 patients without SIRS and 14 patients with SIRS. The training set was used to establish the prediction models using five-fold cross-validation, whereas the testing set was used to validate the prediction models using the area under the curve (AUC) of the receiver operating characteristics (ROC). We calculated the correlation coefficient between features which was used to visualize the contribution of each feature to the model predictions.

Statistical analysis

Continuous variables with normal distributions were presented as mean ± standard deviation (SD) and compared using Student’s t-test. Continuous variables with non-normal distributions were presented as medians with interquartile ranges and compared using the Mann–Whitney test. Categorical variables were expressed as frequencies with proportions and compared using the chi-square test. The machine learning models were written in Python 3.7 language. LASSO algorithm and correlation analysis were implemented by importing the “scipy”, “numpy”, and “sklearn” packages in Python (version 3.7), and were performed using the “One-key AI” platform (http://www.medai.icu/), which was based on Python (version 3.7). The code used in this study was derived from: https://gitee.com/wangqingbaidu/OnekeyCompo. The area under the curve (AUC) was used to evaluate the predictive effectiveness of models, and DeLong test was used to compare whether the efficiency differences between the models were statistically significant. A bilateral P-value < 0.05 was considered as a measure of statistical significance.

Results

Patient characteristics

The study included 337 patients who underwent PCNL and had complete medical records. Among these, 69 patients experienced SIRS. The patients were divided into two groups based on whether SIRS occurred after PCNL. The age, sex, preoperative N, preoperative L, preoperative PLT, preoperative Hb, uric acid, serum albumin, serum fibrinogen, serum prealbumin, NLR, PLR, LMR, SII, operation time, stone burden, urine WBC, urine culture, and staghorn stones were significantly different between the two groups. The baseline data of the included patient are shown in Table 1.

Table 1 Comparison of clinical factors between patients with and without postoperative SIRS

Feature selection and model building

Using spearman correlation analysis and the lasso algorithm with fivefold cross-validation (Fig. 2A, B), the 27 variables were ultimately reduced to 13 potential predictors of post-PCNL SIRS risk (Table 2), which were incorporated into the construction of the predictive model in our study.

Fig. 2
figure 2

A The process of feature selection. We used the least absolute shrinkage and selection operator (LASSO) regression model with penalty parameter tuning conducted by fivefold cross validation according to minimum criteria. Selection of the tuning parameter (λ). Based on the minimum criteria, the vertical dotted line is plotted at the optimal value λ = 0.0110. B The vertical line was plotted with 13 selected features

Table 2 Feature selection results and coeffients for each feature

The training set and testing set consisted of 80% and 20% databases, respectively. Six machine learning algorithms were used to establish the prediction models in the training set, and the performance of the models was evaluated using the testing set and expressed by the AUC, accuracy, sensitivity, and specificity. The six machine learning algorithms that were used to predict SIRS following PCNL used the 13 selected factors as inputs. The performance results of the prediction models are shown in Table 3. The receiver operating characteristics (ROC) and the area under the curve (AUC) for each different prediction models were shown in Fig. 3. The results revealed that the SVM model (AUC=0.942) outperformed KNN model (AUC = 0.904, P = 0.046), Extra-Trees model (AUC = 0.900, P = 0.038), LightGBM (AUC = 0.866, P = 0.014), XGBoost (AUC = 0.852, P<0.001), and Random Forest (AUC = 0.747, P<0.001). The SVM model performed the best predictive ability than other models to predict the occurrence of SIRS after PCNL.

Table 3 Comparison of the performance of machine learning models in the training and testing set
Fig. 3
figure 3

Performance for machine learning models based on the AUC of the ROC curve. The SVM model performed the best predictive ability. AUC area under the curve, ROC receiver operating characteristic, SVM support vector machine, KNN k-nearest neighbor, LightGBM light gradient boosting machine, XGBoost eXtreme gradient boosting

Coefficients were used to interpret the results of the best prediction model by evaluating the contribution of each variable to the prediction model in Fig. 4. As shown in Fig. 4, further analysis revealed that prealbumin contributed the most to the prediction of the outcome, followed by preoperative urine culture, systemic immune-inflammation (SII), neutrophil to lymphocyte ratio (NLR), staghorn stones, fibrinogen, operation time, preoperative urine white blood cell (WBC), preoperative urea nitrogen, hydronephrosis, stone burden, sex and preoperative lymphocyte count.

Fig. 4
figure 4

Top 13 selected features and the corresponding variable coefficients. Y-axis shows the top 13 variables, X-axis shows their impact on the machine model. L lymphocyte, SII Systemic immune-inflammation, NLR Neutrophil to lymphocyte ratio

Discussion

PCNL has become the first choice of treatment for multiple or staghorn renal calculi larger than 2 cm [10]. Although PCNL has the advantage of less trauma and higher stone removal rate, PCNL still has many complications compared with other minimally invasive stone surgical techniques, particularly postoperative bleeding and postoperative infection. Typical clinical symptoms are insufficient during the initial stages of SIRS, making it difficult to detect post-PCNL SIRS at an early stage. SIRS may cause sepsis or multiple organ failure if untreated promptly. Therefore, we should develop a suitable prediction model based on machine learning algorithms for early detection of SIRS.

With the evolution of statistical theory and computer technology, novel machine learning techniques have improved predictive performance compared with traditional prediction methods. Previous studies have shown that machine learning algorithms can be utilized to predict the occurrence of SIRS in intensive care unit (ICU) or emergency department (ED) patients [11]. Kijpaisalratana et al. developed prediction models for early sepsis in the ED [12]. Hou et al. developed a model for predicting mortality in intensive care units for patients with sepsis using the XGboost algorithm [13]. However, few studies have discussed machine learning-based models for predicting SIRS after PCNL.

To our knowledge, this is the first time that machine learning algorithms have been used to predict post-PCNL SIRS. In this study, we compared the performances of six machine learning algorithms at predicting SIRS after PCNL. We take the following steps to address the potential bias inherent in retrospective studies and single-center data collection: Firstly, our rigorous data collection: ensures data consistency and accuracy to reduce information bias; Secondly, potential confounding factors were controlled through multivariate analysis to improve the reliability of the results, thereby reducing the bias impact of single-center data collection.

We mitigate the risk of model overfitting by the following measures: Firstly, we use the LASSO algorithm for feature selection, which can reduce the model complexity and prevent overfitting by increasing regularization terms. Secondly, the 5-fold cross-validation method is used to randomly divide the dataset several times during the training process and evaluate the model performance. Cross-validation can effectively evaluate the generalization ability of the model and prevent overfitting. Finally, we build the model through a variety of machine learning algorithms (such as support vector machine, K-nearest neighbor, random forest, eXtreme Gradient Boosting, Extra-Trees, LightGBM). By comparing the performance of different models, the model with the best performance can be selected, thus improving the model generalization ability.

In our study, the SVM model outperformed the other prediction models in terms of AUC. The excellent performance of the SVM model is mainly attributed to their good adaptability to small sample and high-dimensional datasets, as well as the effectiveness of their kernel trick in dealing with nonlinear problems. This is particularly important for common data characteristics in the medical field. In addition, the SVM model reduces overfitting by regularizing parameters, ensuring the generalization ability of the model. Therefore, we believe that SVM is a reasonable choice for this study.

We used the weight coefficient to quantify each variable’s contribution to the SVM model. Preoperative urine culture, SII, NLR, staghorn stones, fibrinogen, operation time, urea nitrogen, hydronephrosis, preoperative urine WBC, stone burden, and gender were potential risk factors. Previous studies have shown that the SII was a promising prognostic indicator in hepatocellular carcinoma [14], colorectal cancer [15], gastric cancer [16], prostate cancer [17] and post-PCNL SIRS [18]. Stones released inflammatory mediators, such as IL-6, IL-7, IL-8, and TNF-α, as well as increase in neutrophils [19]. Platelets were rich in pro-inflammatory factors and can release active inflammatory metabolites [20]. Excessive inflammatory reactions inhibited the immune responses and reduced the number of lymphocytes, which was associated with an increase in the SII value. SII, an inexpensive and readily available biomarker that can comprehensively reflect the immune status of the host, contributed the most to outcome prediction in our study. In this study, the contribution of NLR to the output of the SVM model was the second most accurate predictor of blood routine after SII. According to Kriplani et al., the NLR was an easily accessible and cost-effective predictor of post-PCNL SIRS [21]. As shown in Fig. 4, preoperative lymphocytes served as a protective factor. Jager et al. highlighted that lymphocytopenia was a sign of bacteremia because of accelerated apoptosis [22]. Therefore, patients with higher NLR, SII, or lymphocytopenia should receive more consideration.

Similar to previous studies, we found that positive urine culture, positive urine WBC, staghorn stone, stone burden and operation time were key factors associated with SIRS after PCNL [23]. Although recent research have shown that renal pelvic urine culture and stone culture can more accurately predict urosepsis than mid-section urine culture, it took a long time to cultivate renal pelvic urine and calculi [24]. Therefore, mid-bladder urine culture remained a reliable indicator because it can be easily obtained. Positive urine WBC indicated a urinary infection, which can increase the risk of SIRS after PCNL [25]. Therefore, it is necessary to complete routine urine tests and urine culture examinations before PCNL to evaluate the severity of urinary tract infection. Patients with urinary tract infections. need to receive adequate anti-infection treatment before surgery. The operation cannot be performed until the infection is controlled.

It has been reported that staghorn stones may be associated with postoperative sepsis because they harbored colonized bacteria, making it difficult to sterilize urine prior to surgery [26]. A larger stone burden made the operation more difficult and prolonged the operation time, which may prolong renal pelvis pressure and increase the risk of endotoxin absorption into the blood [18]. Thus, more attention should be paid to patients with staghorn stones, larger stone burden, or prolonged operative time.

Several literature reports have described that fibrinogen and prealbumin are related factors for postoperative SIRS [21]. Fibrinogen was a key regulator of inflammation in lung cancer [27], hepatocellular carcinoma [28], colorectal cancer [29] and urological cancers [30]. The prealbumin level was a protective predictor in Fig. 4. The prealbumin level reflected the recent nutritional status of a patient and had a positive effect on the prognosis of disease. Therefore, more attention should be paid to high-risk patients with high fibrinogen and low prealbumin levels.

Gender was an independent risk factor for post-PCNL SIRS. This was related to the physiological and anatomical characteristics of the urethra in female patients. Women have a short urethra, and the orifice of the urethra is close to the vagina and anus, which are easily contaminated.

This study had several limitations. First, these machine learning models were trained and developed based on single-center data. Single-center data may have the disadvantage of data bias and small sample size, which will affect the generalization ability and accuracy of the model. Second, all the operations we studied were unilateral and single-channel PCNL, so we were unable to investigate the influence of tract number on post-PCNL SIRS. Finally, we recognize that there may be differences in reference values between different laboratories, and the use of different measurement methods may lead to differences in results, which poses challenges to the accuracy and generalizability of using machine learning models to predict the occurrence of SIRS. The heterogeneity of different laboratory datas may affect the performance of the model, and special attention should be paid when applying the model to different laboratory settings [31]. In the future, we intend to carry out a multicenter study and collect data from multicenter to increase the sample size and improve the generalization ability of the model. In addition, we will conduct external validation, which can help identify and address the limitations of the model and improve its reliability and applicability.

Conclusion

We identified relevant factors of post-PCNL SIRS and developed machine learning models to predict the possibility of SIRS after PCNL. We discovered that the SVM model has the potential to enhance data analysis and clinical decision-making capabilities.

Data availability

The datasets generated and/or analysed during the current study are not publicly available but are available from the corresponding author on reasonable request.

References

  1. Wang Z, Zhang Y, Zhang J, Deng Q, Liang H. Recent advances on the mechanisms of kidney stone formation (review). Int J Mol Med. 2021;48(2).

  2. Zeng G, Mai Z, Xia S, Wang Z, Zhang K, Wang L, et al. Prevalence of kidney stones in China: an ultrasonography based cross-sectional study. BJU Int. 2017;120(1):109–16.

    Article  PubMed  Google Scholar 

  3. Li D, Sha ML, Chen L, Xiao YL, Zhuo J, Lu J, et al. Is the preoperative level of Procalcitonin a Valid Indicator for Predicting Postoperative Fever after Percutaneous Nephrolithotomy? J Endourol. 2018;32(3):192–7.

    Article  PubMed  Google Scholar 

  4. Koras O, Bozkurt IH, Yonguc T, Degirmenci T, Arslan B, Gunlusoy B, et al. Risk factors for postoperative infectious complications following percutaneous nephrolithotomy: a prospective clinical study. Urolithiasis. 2015;43(1):55–60.

    Article  PubMed  Google Scholar 

  5. Michel MS, Trojan L, Rassweiler JJ. Complications in percutaneous nephrolithotomy. Eur Urol. 2007;51(4):899–906. discussion.

    Article  PubMed  Google Scholar 

  6. Jiang H, Liu L, Wang Y, Ji H, Ma X, Wu J, et al. Machine learning for the prediction of complications in patients after mitral valve surgery. Front Cardiovasc Med. 2021;8:771246.

    Article  PubMed  PubMed Central  Google Scholar 

  7. Lee Y, Ryu J, Kang MW, Seo KH, Kim J, Suh J, et al. Machine learning-based prediction of acute kidney injury after nephrectomy in patients with renal cell carcinoma. Sci Rep. 2021;11(1):15704.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  8. Amparore D, De Cillis S, Alladio E, Sica M, Piramide F, Verri P et al. Development of machine learning algorithm to predict the risk of Incontinence after Robot-assisted radical prostatectomy. J Endourol. 2024.

  9. Levy MM, Fink MP, Marshall JC, Abraham E, Angus D, Cook D et al. 2001 SCCM/ESICM/ACCP/ATS/SIS International Sepsis Definitions Conference. Crit Care Med. 2003;31(4):1250-6.

  10. Chen D, Jiang C, Liang X, Zhong F, Huang J, Lin Y, et al. Early and rapid prediction of postoperative infections following percutaneous nephrolithotomy in patients with complex kidney stones. BJU Int. 2019;123(6):1041–7.

    Article  CAS  PubMed  Google Scholar 

  11. Yuan S, Sun Y, Xiao X, Long Y, He H. Using machine learning algorithms to Predict Candidaemia in ICU patients with New-Onset systemic inflammatory response syndrome. Front Med (Lausanne). 2021;8:720926.

    Article  PubMed  Google Scholar 

  12. Kijpaisalratana N, Sanglertsinlapachai D, Techaratsami S, Musikatavorn K, Saoraya J. Machine learning algorithms for early sepsis detection in the emergency department: a retrospective study. Int J Med Inf. 2022;160:104689.

    Article  Google Scholar 

  13. Hou N, Li M, He L, Xie B, Wang L, Zhang R, et al. Predicting 30-days mortality for MIMIC-III patients with sepsis-3: a machine learning approach using XGboost. J Transl Med. 2020;18(1):462.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  14. Hu B, Yang XR, Xu Y, Sun YF, Sun C, Guo W, et al. Systemic immune-inflammation index predicts prognosis of patients after curative resection for hepatocellular carcinoma. Clin Cancer Res. 2014;20(23):6212–22.

    Article  CAS  PubMed  Google Scholar 

  15. Passardi A, Scarpi E, Cavanna L, Dall’Agata M, Tassinari D, Leo S, et al. Inflammatory indexes as predictors of prognosis and bevacizumab efficacy in patients with metastatic colorectal cancer. Oncotarget. 2016;7(22):33210–9.

    Article  PubMed  PubMed Central  Google Scholar 

  16. Wang K, Diao F, Ye Z, Zhang X, Zhai E, Ren H, et al. Prognostic value of systemic immune-inflammation index in patients with gastric cancer. Chin J Cancer. 2017;36(1):75.

    Article  PubMed  PubMed Central  Google Scholar 

  17. Lolli C, Caffo O, Scarpi E, Aieta M, Conteduca V, Maines F, et al. Systemic Immune-inflammation index predicts the clinical outcome in patients with mCRPC treated with Abiraterone. Front Pharmacol. 2016;7:376.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  18. Peng C, Li J, Xu G, Jin J, Chen J, Pan S. Significance of preoperative systemic immune-inflammation (SII) in predicting postoperative systemic inflammatory response syndrome after percutaneous nephrolithotomy. Urolithiasis. 2021;49(6):513–9.

    Article  CAS  PubMed  Google Scholar 

  19. Tang K, Liu H, Jiang K, Ye T, Yan L, Liu P, et al. Predictive value of preoperative inflammatory response biomarkers for metabolic syndrome and post-PCNL systemic inflammatory response syndrome in patients with nephrolithiasis. Oncotarget. 2017;8(49):85612–27.

    Article  PubMed  PubMed Central  Google Scholar 

  20. Gasparyan AY, Ayvazyan L, Mukanova U, Yessirkepov M, Kitas GD. The platelet-to-lymphocyte ratio as an inflammatory marker in Rheumatic diseases. Ann Lab Med. 2019;39(4):345–57.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  21. Kriplani A, Pandit S, Chawla A, de la Rosette J, Laguna P, Jayadeva Reddy S, et al. Neutrophil-lymphocyte ratio (NLR), platelet-lymphocyte ratio (PLR) and lymphocyte-monocyte ratio (LMR) in predicting systemic inflammatory response syndrome (SIRS) and sepsis after percutaneous nephrolithotomy (PNL). Urolithiasis. 2022;50(3):341–8.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  22. de Jager CP, van Wijk PT, Mathoera RB, de Jongh-Leuvenink J, van der Poll T, Wever PC. Lymphocytopenia and neutrophil-lymphocyte count ratio predict bacteremia better than conventional infection markers in an emergency care unit. Crit Care. 2010;14(5):R192.

    Article  PubMed  PubMed Central  Google Scholar 

  23. Tang Y, Zhang C, Mo C, Gui C, Luo J, Wu R. Predictive model for systemic infection after Percutaneous Nephrolithotomy and related factors analysis. Front Surg. 2021;8:696463.

    Article  PubMed  PubMed Central  Google Scholar 

  24. Mariappan P, Smith G, Bariol SV, Moussa SA, Tolley DA. Stone and pelvic urine culture and sensitivity are better than bladder urine as predictors of urosepsis following percutaneous nephrolithotomy: a prospective clinical study. J Urol. 2005;173(5):1610–4.

    Article  PubMed  Google Scholar 

  25. Yang T, Liu S, Hu J, Wang L, Jiang H. The evaluation of risk factors for postoperative infectious complications after Percutaneous Nephrolithotomy. Biomed Res Int. 2017;2017:4832051.

    PubMed  PubMed Central  Google Scholar 

  26. Rivera M, Viers B, Cockerill P, Agarwal D, Mehta R, Krambeck A. Pre- and postoperative predictors of infection-related complications in patients undergoing Percutaneous Nephrolithotomy. J Endourol. 2016;30(9):982–6.

    Article  PubMed  Google Scholar 

  27. Zhang Y, Cao J, Deng Y, Huang Y, Li R, Lin G, et al. Pretreatment plasma fibrinogen level as a prognostic biomarker for patients with lung cancer. Clin (Sao Paulo). 2020;75:e993.

    Article  Google Scholar 

  28. Zanetto A, Campello E, Spiezia L, Burra P, Simioni P, Russo FP. Cancer-Associated thrombosis in cirrhotic patients with Hepatocellular Carcinoma. Cancers (Basel). 2018;10(11).

  29. Li M, Wu Y, Zhang J, Huang L, Wu X, Yuan Y. Prognostic value of pretreatment plasma fibrinogen in patients with colorectal cancer: a systematic review and meta-analysis. Med (Baltim). 2019;98(37):e16974.

    Article  CAS  Google Scholar 

  30. Song H, Kuang G, Zhang Z, Ma B, Jin J, Zhang Q. The prognostic value of pretreatment plasma fibrinogen in Urological cancers: a systematic review and Meta-analysis. J Cancer. 2019;10(2):479–87.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  31. Naik N, Talyshinskii A, Shetty DK, Hameed BMZ, Zhankina R, Somani BK. Smart diagnosis of urinary tract infections: is Artificial Intelligence the fast-Lane Solution? Curr Urol Rep. 2024;25(1):37–47.

    Article  PubMed  Google Scholar 

Download references

Funding

This research did not receive any specific grant from funding agencies in the public, commercial, or not-for-profit sectors.

Author information

Authors and Affiliations

Authors

Contributions

WJ and XW conceived and designed this study. TZ and LZ constructed the machine learning models and contributed to manuscript drafting. XZ, ZW, and SX performed data collection and data analysis. WJ and XW assisted with research and writing. All authors contributed to the article and approved the submitted version.

Corresponding author

Correspondence to Wei Jiao.

Ethics declarations

Ethics approval and consent to participate

The study data was reviewed and approved by the ethics committee of the Affiliated Hospital of Qingdao University. All participants signed the preoperative informed consent, which explicitly stated that the clinical data would be used for scientific research, including the development and validation of machine learning models, and assured that it would not be used for other unauthorized purposes. All experiments were performed in accordance with relevant guidelines and regulations. Data privacy is guaranteed through data anonymity during data collection and processing.

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.

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

Zhang, T., Zhu, L., Wang, X. et al. Machine learning models to predict systemic inflammatory response syndrome after percutaneous nephrolithotomy. BMC Urol 24, 140 (2024). https://doi.org/10.1186/s12894-024-01529-1

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12894-024-01529-1

Keywords