Skip to main content

Prediction of central venous catheter-associated deep venous thrombosis in pediatric critical care settings

Abstract

Background

An increase in the incidence of central venous catheter (CVC)-associated deep venous thrombosis (CADVT) has been reported in pediatric patients over the past decade. At the same time, current screening guidelines for venous thromboembolism risk have low sensitivity for CADVT in hospitalized children. This study utilized a multimodal deep learning model to predict CADVT before it occurs.

Methods

Children who were admitted to intensive care units (ICUs) between December 2015 and December 2018 and with CVC placement at least 3 days were included. The variables analyzed included demographic characteristics, clinical conditions, laboratory test results, vital signs and medications. A multimodal deep learning (MMDL) model that can handle temporal data using long short-term memory (LSTM) and gated recurrent units (GRUs) was proposed for this prediction task. Four benchmark machine learning models, logistic regression (LR), random forest (RF), gradient boosting decision tree (GBDT) and a published cutting edge MMDL, were used to compare and evaluate the models with a fivefold cross-validation approach. Accuracy, recall, area under the ROC curve (AUC), and average precision (AP) were used to evaluate the discrimination of each model at three time points (24 h, 48 h and 72 h) before CADVT occurred. Brier score and Spiegelhalter’s z test were used measure the calibration of these prediction models.

Results

A total of 1830 patients were included in this study, and approximately 15% developed CADVT. In the CADVT prediction task, the model proposed in this paper significantly outperforms both traditional machine learning models and existing multimodal deep learning models at all 3 time points. It achieved 77% accuracy and 90% recall at 24 h before CADVT was discovered. It can be used to accurately predict the occurrence of CADVT 72 h in advance with an accuracy of greater than 75%, a recall of more than 87%, and an AUC value of 0.82.

Conclusion

In this study, a machine learning method was successfully established to predict CADVT in advance. These findings demonstrate that artificial intelligence (AI) could provide measures for thromboprophylaxis in a pediatric intensive care setting.

Peer Review reports

Background

Central venous catheters (CVCs) have revolutionized the care of patients requiring long-term venous access. The introduction of CVCs in pediatric intensive care units (ICUs) has been an important modality in the improved quality of care in critical patients [1]. Despite these advantages, more than 15% of patients receiving a CVC could develop complications [2], such as catheter malfunction, bloodstream infection, chylothorax, and CVC-associated deep venous thrombosis (CADVT) [3], which prolong the hospital stay and increase medical costs. CADVT constitutes 10% of all deep venous thromboses (DVTs) in adults and 50–80% of all DVTs among children [4], and nearly all DVT-related deaths in children are associated with CVCs [5]. In newborns, approximately 90% of venous thromboses are related to CVCs [6]. In pediatric patients, the presence of a CVC is the single most common risk factor for venous thromboembolism (VTE) [7, 8]. With the increasing use of CVCs, the incidence of CADVT has been on the rise. A significant increase in the rate by 30–70% has been reported among hospitalized children over the last 2 decades [9, 10]. Predicting CADVT events before they occur and taking necessary blood clot prevention measures in advance can help reverse this trend. However, current screening guidelines for venous thromboembolism risk, which are developed from incomplete pediatric data and extrapolated from adult data, have low sensitivity for CADVT in hospitalized children [11].

Machine learning is a form of artificial intelligence (AI) in which a model learns from examples rather than preprogrammed rules. Machine learning approaches can provide accurate predictions based on large, structured datasets extracted from electronic health records (EHRs) and have been applied in many clinical areas [12, 13]. Many machine learning methods have been rapidly developed to model complex and nonlinear effects and thereby improve prediction rules developed using standard statistical methods [14]. The advantage of completely data-driven learning without reliance on rule-based programming is that machine learning constitutes a reasonable approach. Therefore, this study applied machine learning methods to develop a model to accurately predict CADVT before it occurs.

Methods

This retrospective study was approved by the Institutional Review Board of the Children’s Hospital of Zhejiang University School of Medicine, and the requirement for informed consent was waived. In this study, data were collected on pediatric patients who were admitted to the ICU of the 1900-bed Children’s Hospital, Zhejiang University School of Medicine, between December 2015 and December 2018. The clinical data from a total of 11,814 patients were recorded in a public pediatric intensive care (PIC) database [15]. Additional daily catheter assessment records and CVC-related adverse event reports were aligned with the PIC database. The inclusion criteria for this study were that patients received CVC placement for at least 3 days during the study period in one of the 4 ICUs of this children’s hospital. The exclusion criteria were incomplete patient-related data or patients with thrombosis either present before hospital admission or unrelated to CVC placement. The thrombus was confirmed with Doppler ultrasound at most time or computed tomography in very rare cases and recorded in the adverse event reports.

Data collection and preprocessing

Patient-specific clinical data were collected from the PIC database, and CVC-related records were collected from different clinical information systems. The primary outcome of interest in the present study was the occurrence of CADVT. The variables included age, sex, primary diagnosis, surgery before CVC insertion, ICU, duration of CVC insertion, catheter-related characteristics (type and size) and administration of 6 types of drugs. Many dynamic temporal data, such as vital signs and laboratory test items, were also repeatedly collected, usually at different time intervals. For temporal data with multiple repeated measurements, statistical values such as the mean, standard deviation, minimum, median, and maximum are used as static feature and the original data were divided by 12-h windows to generate a time series. As a case–control design with three different lookback periods, only dynamic data collected 72 h before the CVC was removed were retained, and then the data were divided into three parts at 24-h intervals to test how far in advance a CADVT event can be predicted, as shown in Fig. 1. It is important to note that some time sensitive static data, such as the CVC dwell time and statistics generated from temporal data, differed at the 3 prediction time points. The details of these variables are shown in Additional file 1.

Fig. 1
figure 1

Flowchart for the study populations and methods

Machine learning model

The traditional logistic regression (LR) model and two superior performance machine learning models, random forest (RF) and gradient boosting decision tree (GBDT), were used as three benchmark models that only use static data. Another benchmark model is a deep learning framework called the multimodal deep learning model (MMDL), which was recently proposed [16]. For simplicity, MMDL treats all the temporal dynamic features as one modality and all nontemporal static features as another modality using different deep learning models. In this study, we propose a novel multimodal deep learning model. The detailed architecture of the proposed model is shown in Fig. 2. Briefly, it accepts dynamic data using multiple recurrent neural network (RNN) models, including both long short-term memory (LSTM) and gated recurrent units (GRUs). The static features were fed into a standard feedforward neural network (FNN), and then the outputs of the FNN and dynamic feature model (LSTM + GRUs) were combined in a shared latent representation layer to predict CADVT. The positive patients (with CADVT) in the dataset accounted for approximately 15% of the total. The phenomenon of class imbalance or class skew can cause an unreasonable evaluation of the two-class classifier. The SMOTE method [17] was adopted as a processing method for unbalanced data before training. A fivefold cross-validation approach in which the dataset were randomly partitioned into 5 subsets of roughly equal size and each subset will be used as the testing set for a model trained on other 4 subsets in 5 rounds [18], was used in the evaluation. We used accuracy, recall, area under the ROC curve (AUC), and average precision (AP) to evaluate the discrimination of the prediction model. Brier score and Spiegelhalter’s z test were used measure the calibration of these prediction models [19]. All these experiments were conducted under the scikit-learn Python module.

Fig. 2
figure 2

Structure of the proposed multimodal deep learning model

Statistical analysis

All statistical analyses were performed using packages in the Python and R programming environments. The patients were categorized according to whether they had experienced the primary outcome (i.e., CADVT). All differences in continuous data between patients with and without CADVT are reported as the mean ± standard deviation and were compared using the Mann–Whitney U test. All categorical data are reported as counts (percentages) and were compared using the chi-square test. For statistical hypothesis testing purposes, we considered a p value less than 0.05 to indicate significance.

Results

Of 11,287 patients who were admitted to ICUs between December 2015 and December 2018, 3927 ICU admissions received CVC placement, but only 1830 children who met our inclusion criteria were included in this study. The detailed patient characteristics and CVC information are shown in Table 1. The mean age of the cohort was 24.3 ± 37.5 months, and 1046 (57.2%) patients were male. The spectrum of primary diagnoses included various cardiac, oncologic, infectious, gastrointestinal, and neurologic conditions. These were broadly categorized as congenital heart disease (CHD) [n = 595(32.5%)], infection or inflammation [n = 311(17.0%)], other congenital disease [n = 126(6.9%)], cancer [n = 121(6.6%)], nonmalignant pathology [n = 125(6.8%)], intracranial space-occupying lesion [n = 69(3.8%)], bleeding [n = 23(1.3%)], and other [n = 441(24.1%)] (detailed definitions of these disease groups are provided in Additional file 1: Table S2). Of these enrolled patients, 282 (15.4%) experienced CADVT, which was confirmed by duplex ultrasound or computed tomography. The average CVC dwell time was 147.22 ± 153.7 h.

Table 1 Patient characteristics stratified by CADVT status

Patients with thrombosis were older, with a mean age of 41.1 ± 48.4 months versus 21.3 ± 34.3 months for those without thrombosis. CADVT occurred more frequent in boys than in girls. The odds of experiencing CADVT were significantly higher for patients with intracranial space-occupying lesions, bleeding, and infection/inflammatory diseases than for patients with other diseases. Many rare and risky diseases were classified as “other”, which accounted for more than one-third of CADVT events. The patient’s ICU type, history of surgery, catheter dwell time, and types and sizes of catheters were significantly associated with the occurrence of CADVT. Many vital signs and laboratory test items also showed significant differences between patients with and without CADVT (a detailed statistical analysis of all 56 temporal data points in all 3927 patients is available in Additional file 1: Table S1).

The accuracy, recall, AUC and AP of the four benchmark models and the proposed model are shown in Table 2 and Fig. 3. The two machine learning models RF and GBDT achieved better performance than the traditional method LR at three time points, especially concerning recall. The MMDL, which uses additional temporal dynamic data, achieved better performance than the three benchmark models based on static data from the first two time points. The proposed model achieved the best prediction results in all 4 evaluation metrics at all 3 time points. The performance of each model did not differ significantly at the three time points. The proposed model can predict CADVT 72 h before it is discovered with an accuracy of 0.75 and a recall of 0.87.

Table 2 Performance of four benchmark models and the proposed model at three time points
Fig. 3
figure 3

Comparison of AUCs among machine learning models at 3 time points. a Twenty-four hours before CADVT. b Forty-eight hours before CADVT. c Seventy-two hours before CADVT. The proposed model is shown as the solid blue line

The calibration results of these models were shown in Table 3. The calibration and discrimination of these 5 models are not consistent. The RF model which achieved a smallest Brier score is the only one with Spiegelhalter’s test p value great than 0.05 in all three time points which means it is well calibrated. All other four models are not well calibrated. The LR and MMDL models will under-estimate the risk of CADVT. While, the GBDT and model proposed in this study will over-estimate it. If the model works as a risk calculator it will needs calibrate before implementation.

Table 3 Calibration results of models at three time points

Discussion

The prevalence of VTE has significantly increased across all age groups of hospitalized children, which has been attributed, in part, to the widely used CVCs in this population [10]. Given this critical and growing problem, several important pediatric organizations have developed initiatives to prevent VTE. However, a study showed that current screening guidelines for VTE risk in hospitalized children have low sensitivity (61%; 95% CI 51–70%) for identifying patients at increased risk of both CVC-associated and other VTE events [11]. It was also confirmed by the traditional LR model in this study that recall, which is the same as sensitivity, was approximately 61%. This means that approximately 40% of CADVT events will not be predicted. Traditional risk models are inadequate for this complex problem.

In this retrospective analysis, we evaluated the performance of different machine learning models to predict CADVT before it occurred at 3 time points. As a complicated task, the 3 machine learning models that only use static data did not achieve the desired predictive performance. A multimodal deep learning model called the MMDL, which can handle temporal data, exhibited an improved performance. Inspired by this finding, we believe that time-series dynamic data contain much more clinical information than static data or dynamic data-based statistics. For these reasons, we propose a new multimodal deep learning model that can provide deeper insight and learn shared latent representations for prediction tasks from both static and temporal dynamic data. The proposed model with an AUC > 0.82 can meet most needs of clinical applications. It allows clinicians to predict CADVT 3 days in advance. The ability to predict CADVT may allow patients to benefit from thromboprophylaxis or close surveillance [20]. The proposed deep learning models have the potential to be used as decision support tools for thromboprophylaxis. Although it is not too difficult to develop a machine learning model, data integration can be a challenge in practice for such a model that requires a large number of data features, especially dynamic data features. Prior to implementing predictive models in novel settings, analyses of calibration remain as important as discrimination, but they are not frequently discussed [21]. As many studies shown, a highly discriminative classifier (e.g., a classifier with a larger area under ROC curve) including widely used logistic regression model and several machine learning approaches such as Naïve Bayes, decision trees, and artificial neural networks all may not be well-calibrated [22, 23]. The calibration reported in this study also show many prediction models were not well calibrated.

The advantage of deep learning models is that they can receive a large number of data features at the same time and learn from them to obtain implicit correlations to serve complex prediction problems. In this study, the static data contained 143 features after one-hot encoding, and the dynamic data were in an n * 2 * 56 size 3D matrix. However, because the deep learning model is not highly interpretable, which factors and how they contribute to CADVT still need to be studied. Based on the contribution of different features, the model can be optimized and compressed to using fewer data input and with simpler network structure in practice. Furthermore, explainability is more important than accuracy, as it will identify which modified risk factor contributes to CADVT and what kind of measures could help to change the situation and determine a patient's individual risk. Explainable artificial intelligence (XAI), which is a set of processes and methods that allows human users to comprehend and trust the results and output created by machine learning algorithms, is also the focus of current AI research in medicine [24]. Some interpretation methods, such as SHAP [25], have been introduced to explain the output of machine learning models by computing each feature for the prediction. However, such an explainable framework works well on static features but not on latent temporal features.

Several studies have shown that different diseases have different risks of CADVT [26]. In this study, we found that patients with intracranial space occupying lesions have a particularly high risk of CADVT (OR 14.2 p value < 0.001 compared with CHD patients). Further analysis showed the dehydration agent, such as mannitol, glycerol fructose, and furosemide etc., that is widely used to reduce brain swelling and intracranial pressure, maybe contribute to the CADVT. For these reasons, intracranial occupying lesions are used independently as a feature. In addition, only the primary discharge diagnosis was used to label patient. It should include more diseases information in the future study. Therefore, for machine learning technology to be used to predict CADVT, patients in the training dataset should be collected from similar hospitals or the same hospital of the practice hospital due to the disease spectrum. Different hospitals with different populations with different diseases may require different models. Machine learning models trained on datasets from multiple centers should also consider hospitals as features. Furthermore, if the prediction risk probability were directly provided to clinician for clinical decision support, applying calibration model to estimates is needed.

This study had several limitations. First, as the temporal data were organized in fixed 12-h time windows, all the original temporal features of different clinical data were not retained. Furthermore, a more flexible learning model that could accept dynamic data at different time intervals should be developed. A scheme which uses forward well-defined index time from the catheter insertion was also suggested for future study. Second, as the proposed deep learning model was evaluated only in a single center with retrospective data in a case–control design, a larger evaluation using a cohort design is needed to demonstrate its broad applicability. The most important limitation of such a complicated multimodal deep learning model is its clinical explainability and its different calibration in different populations.

Conclusions

In conclusion, children in ICUs are at high risk for CADVT, which occurs in approximately 15% of patients. In the CADVT prediction task, the model proposed in this paper significantly outperforms both traditional machine learning models and existing multimodal deep learning models at all 3 time points. The AI model was able to accurately predict the occurrence of CADVT 72 h before it was discovered with an accuracy of > 75%, a recall of > 87%, and an AUC of > 82%. This study demonstrates that AI could provide measures for thromboprophylaxis in pediatric intensive care settings.

Availability of data and materials

The datasets used and/or analyzed during the current study are available from the corresponding author on reasonable request.

Abbreviations

CVC:

Central venous catheter

CADVT:

CVC-associated deep venous thrombosis

DVT:

Deep venous thrombosis

VTE:

Venous thromboembolism

AI:

Artificial intelligence

PIC:

Pediatric intensive care database

LR:

Logistic regression

RF:

Random forest

GBDT:

Gradient boosting decision tree

MMDL:

Multimodal deep learning model

RNN:

Recurrent neural network

LSTM:

Long short-term memory

GRU:

Gated recurrent unit

FNN:

Feedforward neural network

AUC:

Area under the ROC curve

AP:

Average precision

References

  1. Sol JJ, Knoester H, de Neef M, Smets AMJB, Betlem A, van Ommen CH. Chronic complications after femoral central venous catheter-related thrombosis in critically Ill children. J Pediatr Hematol Oncol. 2015;37:462–7. https://doi.org/10.1097/MPH.0000000000000370.

    Article  PubMed  Google Scholar 

  2. McGee DC, Gould MK. Preventing complications of central venous catheterization. N Engl J Med. 2003;348:1123–33. https://doi.org/10.1056/NEJMra011883.

    Article  PubMed  Google Scholar 

  3. Costello JM, Clapper TC, Wypij D. Minimizing complications associated with percutaneous central venous catheter placement in children. Pediatr Crit Care Med. 2013;14:273–83. https://doi.org/10.1097/PCC.0b013e318272009b.

    Article  PubMed  Google Scholar 

  4. CitlaSridhar D, Abou-Ismail MY, Ahuja SP. Central venous catheter-related thrombosis in children and adults. Thromb Res. 2020;187:103–12.

    Article  CAS  Google Scholar 

  5. Monagle P, Chan AKC, Goldenberg NA, Ichord RN, Journeycake JM, Nowak-Göttl U, et al. Antithrombotic therapy in neonates and children. Chest. 2012;141:e737S–e801S. https://doi.org/10.1378/chest.11-2308.

  6. Saxonhouse MA, Burchfield DJ. The evaluation and management of postnatal thromboses. J Perinatol. 2009;29:467–78. https://doi.org/10.1038/jp.2009.14.

    Article  PubMed  CAS  Google Scholar 

  7. Takemoto CM, Sohi S, Desai K, Bharaj R, Khanna A, McFarland S, et al. Hospital-associated venous thromboembolism in children: incidence and clinical characteristics. J Pediatr. 2014;164:332–8. https://doi.org/10.1016/j.jpeds.2013.10.025.

    Article  PubMed  Google Scholar 

  8. Higgerson RA, Lawson KA, Christie LM, Brown A-M, McArthur JA, Totapally BR, et al. Incidence and risk factors associated with venous thrombotic events in pediatric intensive care unit patients*. Pediatr Crit Care Med. 2011;12:628–34. https://doi.org/10.1097/PCC.0b013e318207124a.

    Article  PubMed  Google Scholar 

  9. Boulet SL, Grosse SD, Thornburg CD, Yusuf H, Tsai J, Hooper WC. Trends in venous thromboembolism-related hospitalizations, 1994–2009. Pediatrics. 2012;130:e812–20. https://doi.org/10.1542/peds.2012-0267.

    Article  PubMed  Google Scholar 

  10. Raffini L, Huang Y-S, Witmer C, Feudtner C. Dramatic increase in venous thromboembolism in children’s hospitals in the United States From 2001 to 2007. Pediatrics. 2009;124:1001–8. https://doi.org/10.1542/peds.2009-0768.

    Article  PubMed  Google Scholar 

  11. Asfaw AB, Punzalan RC, Yan K, Hoffmann RG, Hanson SJ. Screening guidelines for venous thromboembolism risk in hospitalized children have low sensitivity for central venous catheter-associated thrombosis. Hosp Pediatr. 2017;7:39–45. https://doi.org/10.1542/hpeds.2016-0078.

    Article  PubMed  Google Scholar 

  12. Rajkomar A, Dean J, Kohane I. Machine learning in medicine. N Engl J Med. 2019;380:1347–58. https://doi.org/10.1056/NEJMra1814259.

    Article  PubMed  Google Scholar 

  13. Zeng X, An J, Lin R, Dong C, Zheng A, Li J, et al. Prediction of complications after paediatric cardiac surgery. Eur J Cardio-Thoracic Surg. 2020;57:350–8.

    Google Scholar 

  14. Shillan D, Sterne JAC, Champneys A, Gibbison B. Use of machine learning to analyse routinely collected intensive care unit data: a systematic review. Crit Care. 2019;23:284. https://doi.org/10.1186/s13054-019-2564-9.

    Article  PubMed  PubMed Central  Google Scholar 

  15. Zeng X, Yu G, Lu Y, Tan L, Wu X, Shi S, et al. PIC, a paediatric-specific intensive care database. Sci Data. 2020;7:14. https://doi.org/10.1038/s41597-020-0355-4.

    Article  PubMed  PubMed Central  Google Scholar 

  16. Purushotham S, Meng C, Che Z, Liu Y. Benchmarking deep learning models on large healthcare datasets. J Biomed Inform. 2018;83:112–34. https://doi.org/10.1016/j.jbi.2018.04.007.

    Article  PubMed  Google Scholar 

  17. Chawla NV, Bowyer KW, Hall LO, Kegelmeyer WP. SMOTE: synthetic minority over-sampling technique. J Artif Intell Res. 2002;16:321–57.

    Article  Google Scholar 

  18. Efron B. Estimating the error rate of a prediction rule: improvement on cross-validation. J Am Stat Assoc. 1983;78:316. https://doi.org/10.2307/2288636.

    Article  Google Scholar 

  19. Huang Y, Li W, Macheret F, Gabriel RA, Ohno-Machado L. A tutorial on calibration measurements and calibration models for clinical prediction models. J Am Med Inform Assoc. 2020;27:621–33. https://doi.org/10.1093/jamia/ocz228.

    Article  PubMed  PubMed Central  Google Scholar 

  20. Piran S, Ngo V, McDiarmid S, Le Gal G, Petrcich W, Carrier M. Incidence and risk factors of symptomatic venous thromboembolism related to implanted ports in cancer patients. Thromb Res. 2014;133:30–3. https://doi.org/10.1016/j.thromres.2013.10.026.

    Article  PubMed  CAS  Google Scholar 

  21. Walsh CG, Sharman K, Hripcsak G. Beyond discrimination: a comparison of calibration methods and clinical usefulness of predictive models of readmission risk. J Biomed Inform. 2017;76:9–18. https://doi.org/10.1016/j.jbi.2017.10.008.

    Article  PubMed  PubMed Central  Google Scholar 

  22. Jiang X, Osl M, Kim J, Ohno-Machado L. Calibrating predictive model estimates to support personalized medicine. J Am Med Inform Assoc. 2012;19:263–74. https://doi.org/10.1136/amiajnl-2011-000291.

    Article  PubMed  Google Scholar 

  23. Park Y, Ho JC. CaliForest. In: Proceedings of the ACM conference on health, inference, and learning, ACM, New York; 2020. p. 40–50. https://doi.org/10.1145/3368555.3384461.

  24. Holzinger A. Explainable AI and multi-modal causability in medicine. i-com. 2021;19:171–9. https://doi.org/10.1515/icom-2020-0024.

    Article  Google Scholar 

  25. Lundberg SM, Erion G, Chen H, DeGrave A, Prutkin JM, Nair B, et al. From local explanations to global understanding with explainable AI for trees. Nat Mach Intell. 2020;2:56–67. https://doi.org/10.1038/s42256-019-0138-9.

    Article  PubMed  PubMed Central  Google Scholar 

  26. Chen K, Agarwal A, Tassone MC, Shahjahan N, Walton M, Chan A, et al. Risk factors for central venous catheter-related thrombosis in children. Blood Coagul Fibrinolysis. 2016;27:384–8. https://doi.org/10.1097/MBC.0000000000000557.

    Article  PubMed  Google Scholar 

Download references

Acknowledgements

Not applicable.

Funding

HL was supported by the National Natural Science Foundation of China (81871456) and National Key R&D Program of China (2016YFC0901905). Two funders did not play any role in this study.

Author information

Authors and Affiliations

Authors

Contributions

Study design: HL, YL, QS and JZ. Data collection: YL, CF and JZ. Data analysis: HL, YL, XZ, DH, QS and JZ. Data interpretation: HL, YL, QS and JZ. Drafting the manuscript: HL, YL. Revising manuscript content: HL, DH, QS and JZ. All authors approved the final manuscript as submitted and agree to be accountable for all aspects of the work. All authors read and approved the final manuscript.

Corresponding authors

Correspondence to Haomin Li, Qiang Shu or Jihua Zhu.

Ethics declarations

Ethics approval and consent to participate

This study was approved by the Institutional Review Board of the The Children’s Hospital, Zhejiang University School of Medicine (2019-IRB-155), prior to the commencement of this study, and the requirement for informed consent was waived, as the utilization of anonymized retrospective data does not require patient consent under the local legislation.

Consent for publication

Not applicable.

Competing interests

The authors declare that they have no competing interests.

Additional information

Publisher's Note

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

Supplementary Information

Additional file 1.

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/. 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

Li, H., Lu, Y., Zeng, X. et al. Prediction of central venous catheter-associated deep venous thrombosis in pediatric critical care settings. BMC Med Inform Decis Mak 21, 332 (2021). https://doi.org/10.1186/s12911-021-01700-w

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12911-021-01700-w

Keywords