Skip to main content

ORIGINAL RESEARCH article

Front. Pediatr., 18 January 2021
Sec. Pediatric Surgery

Using Artificial Intelligence to Obtain More Evidence? Prediction of Length of Hospitalization in Pediatric Burn Patients

\nJulia Elrod,
Julia Elrod1,2*Christoph MohrChristoph Mohr1Ruben WolffRuben Wolff3Michael Boettcher,Michael Boettcher1,2Konrad Reinshagen,Konrad Reinshagen1,2Pia BartelsPia Bartels1German Burn Registry German Burn Registry4Ingo Koenigs,Ingo Koenigs1,2
  • 1Department of Paediatric Surgery, University Medical Centre Eppendorf, Hamburg, Germany
  • 2Burn Unit, Plastic and Reconstructive Surgery, Department of Paediatric Surgery, Altona Children's Hospital, Hamburg, Germany
  • 3Neoglia LTD, London, United Kingdom
  • 4German Society for Burn Treatment, Deutsche Gesellschaft für Verbrennungsmedizin, Committee of the German Burn Registry, Berlin, Germany

Background: It is not only important for counseling purposes and for healthcare management. This study investigates the prediction accuracy of an artificial intelligence (AI)-based approach and a linear model. The heuristic expecting 1 day of stay per percentage of total body surface area (TBSA) serves as the performance benchmark.

Methods: The study is based on pediatric burn patient's data sets from an international burn registry (N = 8,542). Mean absolute error and standard error are calculated for each prediction model (rule of thumb, linear regression, and random forest). Factors contributing to a prolonged stay and the relationship between TBSA and the residual error are analyzed.

Results: The random forest-based approach and the linear model are statistically superior to the rule of thumb (p < 0.001, resp. p = 0.009). The residual error rises as TBSA increases for all methods. Factors associated with a prolonged LOS are particularly TBSA, depth of burn, and inhalation trauma.

Conclusion: Applying AI-based algorithms to data from large international registries constitutes a promising tool for the purpose of prediction in medicine in the future; however, certain prerequisites concerning the underlying data sets and certain shortcomings must be considered.

Background

Severe thermal injuries in the pediatric population generally have a far-reaching impact on those affected, their families, and society. Treatment costs of pediatric burns exceeded 211 million US dollars in the United States in 2000, not including the indirect economic impact related to long-term treatment of physical disability, care for psychological issues, absence at school, and the resulting lost wages (1). Severe burns are associated with long hospital stays (2). Prediction of length of stay (LOS) in the hospital is of great interest. It is not only important for counseling the affected families but also it has major implications for the management of health resources, capacity planning, and quality assurance in large burn (35). Hospitalization time might serve as a good indicator for injury-related morbidity and the incidence of clinical complications (6, 7).

Commonly, the assumption of a linear relationship between the burned total body surface area (TBSA) and the LOS (1 day stay per 1% TBSA) is applied as a rough estimation of the predicted hospitalization time (8). This rule of thumb, originating from 1986 and initially serving as a mean to contain hospitalization costs (9), is popular not only due to its simplicity but also due to its repeated validation with more recent data sets, as in Saffle et al. (10) using outcome data from the predecessor of the US National Burn Repository. However, some authors criticize the rule of thumb for its oversimplification (8, 11, 12). As an alternative, LOS is often predicted using multivariate models, as reviewed by Hussain and Dunn (7). Conversely, attempts to set up multivariate regression to predict LOS separately and systematically for the pediatric population are rare. In 1983, Bowser et al. (13) generated a regression equation based on 444 pediatric subjects, yielding only two independent variables, i.e., TBSA and the percentage of full-thickness burn to contribute significantly to the prediction of LOS.

The aim of this project was to close this gap using a linear regression analysis and the artificial intelligence (AI)-based prediction method random forest for the prediction of LOS in the pediatric population.

Materials and Methods

Outcome data from pediatric burn patients were obtained from the Web-based international burn registry of German-speaking countries (Germany, Switzerland, and Austria) from the German Society for Burn Treatment (DGV) including the years 2015–2018. Institutions contributing to data entry—located in Germany, Austria, and Switzerland—are listed on the society's website (14). The manuscript is released in accordance with the publication guidelines of the German Burn Registry (VR-DGV-Project-ID: 2018-009).

Three methods to predict LOS were applied and compared in terms of their predictive capacity. Significant predictors of prolonged stay were also identified. In addition, predictive accuracy was calculated separately for patients with burns ≤ 20% TBSA only due to the low case numbers in patients with large % TBSA (196/8,542 patients = 2.29%). The choice of the parameters extracted from the register was adopted from those commonly found in adults: TBSA itemized by degree of burn, age, gender, inhalation trauma/injury (IHT), cause of injury, treatment in the (burn) intensive care unit (BICU), and ventilation. However, the parameters of treatment in the BICU and ventilation had to be eliminated due to incomplete and inconclusive data. Data quality was ensured by removing data demonstrating any of the following exclusion criteria: incomplete data for the above-named variables; data entry errors resulting in a contradiction with respect to the cause of burn, TBSA, or LOS. All calculations were performed using R Core Team (15).

Rule of Thumb

The rule of thumb method is equivalent to a linear regression model with the TBSA coefficient equal to one, the coefficients of all other factors equal to zero, and a y-intercept of zero. This heuristic of expecting 1 day of hospitalization for each percentage of body surface area burned served as a benchmark in terms of its predictive accuracy.

Multiple Linear Regression Model

In the multiple linear regression model, the R-based package “stat” was used, and no regularization was applied to this linear model assuming a Gaussian distribution over all factors. LOS was assumed to be the dependent variable, and the other parameters were applied as independent variables. The linear regression finds the optimal parameters for the equation:

HOSPITAL_DAYS=c_0+c_1*CAUSE_BURN+c_2*CAUSE_SCALD+c_3*IHT+c_4*AGE+c_5*SEX+c_6*DEGREE_2a+c_7*DEGREE_2b+c_8*DEGREE_3

where c_0 is a constant determined for our regression model, and all remaining c_1 to c_7 quantify the contribution of this factor to the prediction of the dependent variable, i.e., LOS.

Random Forest

Random forest is an advanced method of regression that can capture non-linear relationships between observed factors with lower variance than a single regression tree by averaging the prediction of multiple decision trees (16). Here, the R package randomForest (17) was applied and 150 different trees were used, of which each tree is trained on a different bootstrapped dataset. Bootstrapping is simply sampling from the original data with replacement (18). Each decision tree consists of edges that are conjunctions on a single variable being greater than or less than some value. In this way, each node of the tree divides the data into two subsets with the goal of making each subset more homogeneous. Which terminal node (leaf) of the tree a certain data point falls into decides the predictions by majority selection of the training data.

K-Fold Cross Validation

For all three methods of prediction, both the mean absolute error (MAE) and the mean squared error (MSE) were calculated. For all models, k-fold cross validation (19) was performed, where k = 20 in our case, to estimate the generalization error in the future of real-world use. For this purpose, the data sets were split into 20 parts, and each model was trained 20 times. Each time, 19 parts served as training data. The performance of the model to predict LOS was then evaluated by applying it to the test set, i.e., the remaining one part. That way, a variance on how much test error fluctuates when the algorithm sees different subsets of the data during training is obtained. Results concerning MAE, respectively, MSE are reported as means over the 20 calculations. The performance of the three models was compared using a paired t-test. Prior to that, normality of the data was verified using the Kolmogorov–Smirnov test.

Total Body Surface Area to Residual Plot

Cross validation test data set's residuals were plotted against the TBSA to allow investigation of the relationship between a patient's TBSA and the residual. A residual is the difference between the observed and the estimated value.

Results

Demographics and General Injury Data

Between 2015 and 2018, 8,915 children and adolescents were included in the registry. After removal of the deceased patients and inconclusive and missing data sets, 8,542 complete sets of patients with burns remained in the main analysis. Of these, 4,955 patients (58.00%) were boys. The mean age was 3.41 ± 4.45 years (range 0–18 years); the majority, 5,297 (62.01%), were children between 0 and 5 years of age. The most common causes of injury in descending order were scald (6,327 cases, 74.07%), burn (2,082 cases, 24.37%; among them, 974 were contact burns, 624 flame burns, 272 fat burns, and 136 burns due to explosions, including double entries), other (83 cases, 0.97%) and electricity (50 cases, 0.58%). A total of 52 children (0.61%) suffered from an inhalation injury. Mean LOS was 7.39 ± 8.51 days (range: 1–133 days). Mean TBSA was 5.79 ± 5.94% (range 0.1–87% TBSA).

Furthermore, a total of 17 patients (11 males) had died (see red crosses in Figure 1). In this group, mean age was 12.12 ± 5.58 years (range 0–18 years). Mean TBSA was 62.92 ± 35.37% (range 6.7–100% TBSA). Inhalation injury occurred in nine (52.94%) of these 17 patients. Thus, mortality rates in descending order by cause of injury in our complete cohort was electricity (8.00%), other (0.75%), burn (0.48%), and scald (0.03%). Death occurred at a mean time of 22.34 ± 28.61 days (range 1–108 days), with a median of 8 days.

FIGURE 1
www.frontiersin.org

Figure 1. Relationship between length of stay and total body surface area (TBSA) affected. The 8,542 surviving burn subjects are depicted as green dots, and a best-fit line with a slope of m = 1.092 is displayed, predictive power R2 = 0.38; 17 deceased burned victims are displayed as red crosses (R2 = 0.02), and the 12 patients with dermatological conditions similar to superficial burns (toxic epidermal necrolysis, Stevens–Johnson syndrome, or staphylococcal scaled skin syndrome) are represented as blue triangles (R2 = 0.03). In addition, the rule of thumb (x = y) is displayed, yielding a predictive power of R2 = 0.35.

Moreover, a total of 12 patients (10 males) did not sustain a thermal injury but instead a spectrum of dermatological conditions whose characteristics were similar to a superficial skin burn. This included toxic epidermal necrosis (TEN), Stevens–Johnson syndrome, or the staphylococcal scaled skin syndrome (SSS). Here, mean age was 7.58 ± 6.01 years (range 0–18 years). Mean TBSA was 41.96 ± 36.38% (range 1–90%), mean LOS was 16.50 ± 12.98 days (range 4–49 days). No death was observed.

Figure 1 provides an overview of all patients in terms of TBSA and LOS. For patients who survived the burn injury, this results in a best-fit line with a slope of m = 1.09 days per TBSA affected. This simple best-fit line describes 38% of the variability of the dependent variable LOS (R2 = 0.38). Conversely, regarding the deceased burn victims, R2 = 0.02, indicating the lack of an obvious relationship between the time of death and the TBSA in this group. Finally, in the group of patients with dermatological conditions similar to burns, all patients survived and were discharged at a maximum of 49 days despite large TBSA involved with a similarly low R2 of 0.03. The rule of thumb suggests a linear relationship between TBSA and LOS, with an intercept of 0 and a slope of m = 1. One percentage of TBSA is equivalent to a hospital stay of 1 day.

The results from the linear regression model for LOS of the surviving burn patients are shown in Table 1. The model revealed cause scald, the presence of an inhalation injury, and TBSA by degrees 2a, 2b, and 3 to be statistically highly significant determinants of a prolonged hospital stay. In contrast, there was no significant relationship between cause burn, age, and gender and LOS in this group.

TABLE 1
www.frontiersin.org

Table 1. Results of multiple linear regression analysis of length of stay for pediatric patients.

This model thus results in the following regression equation and an associated power of R2 = 0.49:

HOSPITAL_DAYS=4.27--0.01*CAUSE_BURN-1.29*CAUSE_SCALD+3.46*IHT+0.00*AGE-0.15*SEX+0.56*DEGREE_2a+0.74*DEGREE_2b+1.78*DEGREE_3

Here, cause scald, cause burn, IHT, and gender have binary formats, whereas degrees 2a, 2b, and 3 are indicated as actual percentage (0–100) and the age of the patient is entered in years.

The random forest-based prediction technique reveals the strongest predictive power provided by the observed variable degrees 3, 2b, and 2a (data not shown) and a predictive power of R2 = 0.49.

The Kolmogorov–Smirnov test revealed all data concerning MAE and MSE to be normally distributed (p > 0.05). K-fold cross validation was performed to compare the effectiveness of the different LOS prediction techniques with the benchmark (effectiveness of the rule of thumb). In addition, these analyses were conducted separately for patients with injuries ≤ 20% TBSA. The results are depicted in Table 2 and Figure 2; significance levels are shown in Table 2. The random forest model results in the lowest MAE followed by the linear regression model and finally the rule of thumb reveals the largest MAE (Table 2), both for all patients and for the sub-cohort including patients with ≤ 20% TBSA only. Paired t-test analysis merely reveals the rule of thumb to be significantly inferior to the other two methods, whereas the difference in predictive accuracy between the linear model and the random forest-based approach is not substantial. Importantly, the terms MAE and MSE apply to the mean of all errors resulting from the 20 test sets, i.e., they are estimations of the generalization error.

TABLE 2
www.frontiersin.org

Table 2. Estimated generalization errors of prediction of length of stay expressed as the mean absolute error (MAE) and mean square error (MSE) and comparison of effectiveness of each of the three models: rule of thumb (RT), linear regression model (LR), and random forest model (RF).

FIGURE 2
www.frontiersin.org

Figure 2. Comparative illustration of mean absolute error (MAE) and mean square error (MSE) using the three methods of prediction of length of stay: rule of thumb (“Thumb”), linear regression (“Linear”), and random forest (“Forest”). (A,C) All patients included into the analysis. (B,D) Sub-cohort including patients with injuries ≤ 20% TBSA only. The box plots display the 20 mean absolute error (MAE), respectively, 20 mean squared error (MSE) generated when running the models over each test set. The median is represented by the center line, the top and bottom of the box represent a 50% percentile around the median, and the outside lines represent a 95% percentile of the data.

Cross validation test data set's residuals vs. TBSA were plotted for each of the three methods (total analysis only). The resulting Figure 3 reveals an increase in the residual error as TBSA increases for all three methods; random forest-based prediction depicts the flattest curve.

FIGURE 3
www.frontiersin.org

Figure 3. Residuals vs. total body surface area (TBSA) for all patients. Residuals are shown as a function of TBSA for one cross validation test set (1/20 of the data), depicted separately for each of the three models (A = Rule of Thumb, B = Linear Regression, C = Random Forest). Residuals are defined as the absolute difference between predicted and actual length of stay (LOS).

Discussion

The rule of thumb is most convincing due to its absolute simplicity, assuming a hospitalization stay of 1 day per 1% TBSA (9), allowing for fast mental prediction of LOS in clinical everyday life. For the present data set, creating a significantly more accurate but equally simple formula, e.g., prediction LOS as a function of TBSA only, is not possible, as shown in Figure 1, in which the best-fit line nearly matches the rule of thumb. It is clear that any type of more complex prediction of LOS is only achieved at the expense of this simplicity.

Several studies have investigated whether the target of 1% per day could be achieved in different settings and come to diverging conclusions. A review by Saffle et al. (10) revealed a high consistency with the target, whereas others observed the actual LOS to be considerably higher than the target value for a large percentage of the patients (12, 20, 21). Alternatively, multiple regression is used for prediction of LOS (7), and with regard to AI, for example, model tree-based regression and support vector machine regression have been applied in the adult population by Yang et al. (4), indicating the AI-based techniques to be more effective than linear regression.

AI-based algorithms constitute a potentially powerful tool, as shown recently in several medical fields (22, 23), as they process huge amounts of data within seconds, resulting in predictions without any assumptions, yielding new patterns and connections. As to evaluate the true usefulness of an AI-based approach for the present application, it was indispensable to systematically test the performance of all three methods of interest on the same data set. The present analysis is based on 8,542 data sets provided by the German Burn Registry. In doing 20-fold cross validation, we get an evaluation of the variance of each estimator and, as a result, show the differences between each estimator as would be expected on new real-world data (Figure 2). The analysis depicts the linear regression model and the random forest-based approach to perform significantly better than the rule of thumb (Table 2). Nevertheless, it is striking that the random forest-based approach does not greatly outperform conventional methods of prediction.

As illustrated in Figure 3, prediction error increases for all methods with growing TBSA. This relationship is not surprising, since first, as with larger TBSA, the true hospitalization stay increases and hence there is greater room for error. Second, because large full-thickness wounds, unlike small injuries, are in many cases not primarily treated with conventional methods such as prompt split-thickness skin grafts (STSGs) but instead more complex treatments are used involving, for example, dermal regeneration templates with secondary coverage with STSGs after several weeks (24) or cultured epithelial autografts (25). These methods not only are lengthy but also render prediction of LOS difficult due to their susceptibility to infections (26) or the risk of rejection and prolonged wound healing (27). Third, extensive deep dermal or full-thickness burns lead to complex physiological derangements including sepsis-induced immunosuppression and consecutive (multi-)organ failure (28), which can have unforeseeable effects on LOS.

The fact that a separate analysis including injuries ≤ 20% TBSA only (Figure 2) tends to reveal a clearer distinction between the AI and the conventional methods might stem from the fact that AI-based methods are particularly dependent on the availability of high case numbers, indicating a limitation of the utility of AI-based methods in the upper range of percent of TBSA in the present study.

While the results of this study reveal that the immediate use of AI in day-to-day clinical practice is somewhat limited, one should keep in mind that even a modest increase in accuracy is of potential relevance for specific purposes, such as in the context of large-scale capacity planning and nationwide management of health resources. The sum of the slight enhancements in predictive accuracy in very large numbers of patients adds up to a relevant number of hospital days. Moreover, a more complex AI-based estimate of LOS could have a potential benchmarking function within the German Society for Burn Treatment, allowing for comparison of outcome quality (5).

Unlike the random forest model, which allows for intricate data fitting but is not intuitively understood, the linear method can be interpreted easily, generating a formula reflecting the contribution of each independent variable on the predicted variable. In the present analysis, its most influential factors were cause scald, IHT, and TBSA itemized by degree of burn, leading to a predictive power of R2 = 0.49. Results are similar to those of a previously published retrospective multivariate linear regression including children by Bowser et al. (13), revealing the combination of TBSA and the percentage of third-degree burn to be the most important variables, resulting in a predictive power of 0.59. In the adult population, a review by Hussain and Dunn (7) reveals age and percent of TBSA to be the strongest predictors; other important variables were percentage of the burn itemized by depth, burn, IHT, age, female gender, and performance of escharotomy. Interestingly, our linear regression model—including pediatric and adolescent patients only—did not reveal age to be of any importance.

For very large burn centers interested in the prediction of LOS by means of linear regression, it might be more reasonable to determine center-specific coefficients of the linear regression equation instead of simply assuming the formula proposed in this study. However, sample size requirements have to be met (29) and will probably impede this approach in most small- to middle-sized burn centers due to their moderate number of (severely) burned patients. In this case, we suggest applying the proposed formula.

Why is prediction of LOS so difficult in this population? One major difficulty is certainly that the actual hospital stay of an individual patient is not merely dependent on injury characteristics, patient demographics, preexisting medical conditions, and treatment strategies such as the use of modern dressings, which tend to allow early dismissal, but instead is also dependent on non-medical aspects. These comprise, among others, local and national hospital agreements, continuous changes in health insurance, as well as the local strategy concerning timing of transition of patients from the inpatient to the outpatient departments, and also possibly non-medical patient-related properties such as socioeconomic status (3033). One limitation of the present study is the confined number of variables included in the German Burn Registry. Our work suggests an expansion of the number of observations. Furthermore, as shown in a survey in 17 burn centers in Germany, Switzerland, and Austria, each institution has its own standard operating procedure (SOP) regarding admission and treatment of severely burned patients (34). This lack of standardization certainly leads to differences in LOS. We cannot account for these factors, since, at present, treating institutions are anonymized in the burn registry, impeding adaptation of the prediction models for center-specific features. Another shortcoming of registry-based studies is that they tend to contain input errors due to human fuzziness. On this account, highly improbable cases were excluded from the present analysis; however, this also constitutes the risk of erroneous elimination of patients.

Conclusion

In conclusion, this study presents the first systematic and comparative investigation of the accuracy of three distinct algorithms in the prediction of LOS in pediatric burn patients, including an AI-based approach in an international cohort. The results indicate a modest, however, statistically significantly improved accuracy of the random forest-based prediction of LOS in comparison to the commonly applied heuristic expecting 1 day of hospitalization for each percentage TBSA. Yet, expanding the total number of severely burned patients, the quantity of observed variables per patient, and non-medical information concerning the treating institution and its case and discharge management is indispensable as to further improve its accuracy. Concepts using AI should be evaluated in future prospective studies in burn patients whenever large, comprehensive international registries are available. Especially, after solving data protection issues, instantaneous, automated extraction of anonymized data from hospital information systems would enable improvement of AI-based algorithms for the purpose of obtaining more evidence in medicine.

Data Availability Statement

The data analyzed in this study is subject to the following licenses/restrictions: Data was extracted from the burn registry of the German Society for Burn Treatment (DGV), Committee of the German Burn Registry, Luisenstrasse 58–59, 10117 Berlin, Germany. On demand, data can be requested.

Author Contributions

All authors substantially contributed to the present article and are legally responsible for the content. JE: concept and design of the work, analysis, interpretation of a data, statistics, drafting the work, and revision of the work. CM: literature research, planning, statistics, and revision of the work. RW: planning, statistics, and revision of the work. MB: data analysis and plotting, data interpretation, and final revision of the work. PB: drafting the work and revision of the work. KR: analysis, interpretation of a data, statistics, drafting the work, and revision of the work. IK: substantial contribution to the concept and design of the work, analysis, interpretation of a data, statistics, drafting the work, and revision of the work. German Burn Registry: acquisition of the data, providing the infrastructure of the registry, and revision of the work by the internal review board.

Conflict of Interest

RW was employed by the company Neoglia LTD.

The remaining authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

Acknowledgments

The authors thank all hospitals in Austria, Germany, Switzerland, and Austria participating in the Burn Registry of the German Society for Burn Treatment (DGV) and their persons of authority. A list of the participating hospitals is displayed at https://www.verbrennungsmedizin.de/verbrennungsregister.

References

1. WHO. Burns - Key Facts. (2018). Available online at: https://www.who.int/news-room/fact-sheets/detail/burns (accessed August 18, 2019).

Google Scholar

2. Association AB. National Burn Repository 2017 Update - Report of Data From 2008–2017. Chicago (2017):25. Available online at: https://ameriburn.site-ym.com/resource/collection/4C72F10C-24FD-401C-8608-417BFAB10138/2017_ABA_NBR_Annual_Report.pdf

Google Scholar

3. Gravante G, Montone A, Esposito G. Length of hospitalization: an important parameter for burned patients. J Burn Care Res. (2007) 28:537–8. doi: 10.1097/BCR.0b013e318053db44

PubMed Abstract | CrossRef Full Text | Google Scholar

4. Yang CS, Wei CP, Yuan CC, Schoung JY. Predicting the length of hospital stay of burn patients: comparisons of prediction accuracy among different clinical stages. Decis Support Syst. (2010) 50:325–35. doi: 10.1016/j.dss.2010.09.001

CrossRef Full Text | Google Scholar

5. Jiménez R, López L, Dominguez D, Fariñas H. Difference between observed and predicted length of stay as an indicator of inpatient care inefficiency. Int J Qual Heal Care. (1999) 11:375–84. doi: 10.1093/intqhc/11.5.375

PubMed Abstract | CrossRef Full Text | Google Scholar

6. Barret JP. Cost-containment and outcome measures. In: Herndon DN, editor. Total Burn Care. 4th ed. London: W.B. Saunders (2012). p. 707–14. doi: 10.1016/B978-1-4377-2786-9.00063-1

CrossRef Full Text | Google Scholar

7. Hussain A, Dunn K. Predicting length of stay in thermal burns: a systematic review of prognostic factors. Burns. (2013) 39:1331–40. doi: 10.1016/j.burns.2013.04.026

PubMed Abstract | CrossRef Full Text | Google Scholar

8. Johnson LS, Shupp JW, Pavlovich AR, Pezzullo JC, Jeng JC, Jordan MH. Hospital length of stay - does. 1% TBSA really equal 1 day? J Burn Care Res. (2011) 32:13–9. doi: 10.1097/BCR.0b013e318204b3ab

CrossRef Full Text | Google Scholar

9. Gillespie R, Carroll W, Haith L, Dimick AR, Heimbach D, Potts L, et al.Diagnosis-related groupings (DRGs) and wound closure: roundtable discussion. J Burn Care Rehabil. (1987) 8:199–205. doi: 10.1097/00004630-198705000-00005

CrossRef Full Text | Google Scholar

10. Saffle JR, Davis B, Williams P. Recent outcomes in the treatment of burn injury in the United States: a report from the American burn association patient registry. J Burn Care Rehabil. (1995) 16:219–32. doi: 10.1097/00004630-199505000-00002

PubMed Abstract | CrossRef Full Text | Google Scholar

11. Taylor SL, Sen S, Greenhalgh DG, Lawless M, Curri T, Palmieri TL. Not all patients meet the 1 day per percent burn rule: a simple method for predicting hospital length of stay in patients with burn. Burns. (2017) 43:282–9. doi: 10.1016/j.burns.2016.10.021

PubMed Abstract | CrossRef Full Text | Google Scholar

12. Tan T, Wong DSY. Is the target of 1 day of stay per 1% total body surface area burned achieved in chemical burns? Ann Plast Surg. (2016) 77:39–42. doi: 10.1097/SAP.0000000000000716

PubMed Abstract | CrossRef Full Text | Google Scholar

13. Bowser BH, Caldwell FT, Baker JA, Walls RC. Statistical methods to predict morbidity and mortality: self assessment techniques for burn units. Burns. (1983) 9:318–26. doi: 10.1016/0305-4179(83)90077-3

PubMed Abstract | CrossRef Full Text | Google Scholar

14. DGV. Deutsche Gesellschaft für Verbrennungsmedizin. (2019). Available online at: https://www.verbrennungsmedizin.de/verbrennungsregister/ (accessed October 17, 2019).

PubMed Abstract | Google Scholar

15. R Core Team. A Language and Environment for Statistical Computing. R Foundation for Statistical Computing. (2019). Available online at: http://www.R-project.org/ (accessed September 30, 2020).

Google Scholar

16. Breiman L. Random forests. Mach Learn. (2001) 45:5–32. doi: 10.1023/A:1010933404324

CrossRef Full Text | Google Scholar

17. Liaw A, Wiener M. Classification and regression by randomForest. R News. (2002) 2:18–22.

Google Scholar

18. Efron B. Bootstrap methods: another look at the jackknife. Ann Stat. (1979) 7:1–26. doi: 10.1214/aos/1176344552

CrossRef Full Text | Google Scholar

19. Stone M. Cross-validatory choice and assessment of statistical predictions. J R Stat Soc Ser B. (1974) 36:111–47. doi: 10.1111/j.2517-6161.1974.tb00994.x

CrossRef Full Text | Google Scholar

20. Sahin I, Ozturk S, Alhan D, Açikel C, Isik S. Cost analysis of acute burn patients treated in a burn centre: the Gulhane experience. Ann Burns Fire Disasters. (2011) 24:9–13.

PubMed Abstract | Google Scholar

21. Ho WS, Ying SY. An epidemiological study of 1063 hospitalized burn patients in a tertiary burns centre in Hong Kong. Burns. (2001) 27:119–23. doi: 10.1016/S0305-4179(00)00095-4

PubMed Abstract | CrossRef Full Text | Google Scholar

22. Stokes JM, Yang K, Swanson K, Jin W, Cubillos-Ruiz A, Donghia NM, et al. A deep learning approach to antibiotic discovery. Cell. (2020) 180:688–702. doi: 10.1016/j.cell.2020.01.021

CrossRef Full Text | Google Scholar

23. McKinney SM, Sieniek M, Shetty S. International evaluation of an AI system for breast cancer screening. Nature. (2020) 577:89–94. doi: 10.1038/s41586-019-1799-6

PubMed Abstract | CrossRef Full Text | Google Scholar

24. Heimbach DM, Warden GD, Luterman A, Jordan MH, Ozobia N, Ryan CM, et al. Multicenter postapproval clinical trial of Integra dermal regeneration template for burn treatment. J Burn Care Rehabil. (2003) 24:42–8. doi: 10.1097/00004630-200301000-00009

PubMed Abstract | CrossRef Full Text | Google Scholar

25. Gallico GG, O'Connor NE, Compton CC, Kehinde O, Green H. Permanent coverage of large burn wounds with autologous cultured human epithelium. N Engl J Med. (1984) 311:448–51. doi: 10.1056/NEJM198408163110706

PubMed Abstract | CrossRef Full Text | Google Scholar

26. Meuli M, Raghunath M. Tops and flops using cultured epithelial autografts in children. Pediatr Surg Int. (1997) 12:471–7. doi: 10.1007/BF01258705

PubMed Abstract | CrossRef Full Text | Google Scholar

27. Wood FM, Kolybaba ML, Allen P. The use of cultured epithelial autograft in the treatment of major burn injuries: a critical review of the literature. Burns. (2006) 32:395–401. doi: 10.1016/j.burns.2006.01.008

PubMed Abstract | CrossRef Full Text | Google Scholar

28. Hotchkiss RS, Monneret G, Payen D. Sepsis-induced immunosuppression: from cellular dysfunctions to immunotherapy. Nat Rev Immunol. (2013) 12:862–74. doi: 10.1038/nri3552

PubMed Abstract | CrossRef Full Text | Google Scholar

29. Bujang MA, Sa'at N, Tg TMI, Sidik TAB. Determination of minimum sample size requirement for multiple linear regression and analysis of covariance based on experimental and non-experimental studies. Epidemiol Biostat Public Heal. (2017) 14:1–9. doi: 10.2427/12117

CrossRef Full Text | Google Scholar

30. Zens T, Yan A, Lee CW, Schmitz C, Fauzher L, Gibson A, et al. A pediatric burn outpatient short stay program decreases patient length of stay with equivalent burn outcomes. J Burn Care Res. (2018) 20:353–62. doi: 10.1097/BCR.0000000000000599

PubMed Abstract | CrossRef Full Text | Google Scholar

31. Opdahl S, Carrougher GJ, Miller M, Pham TN. Evaluation of a new fast track process of care for patients with minor burn injuries. J Burn Care Res. (2014) 35:129.

Google Scholar

32. Shields BJ, Comstock RD, Fernandez SA, Xiang H, Smith GA. Healthcare resource utilization and epidemiology of pediatric burn-associated hospitalizations, United States, 2000. J Burn Care Res. (2007) 28:811–26. doi: 10.1097/BCR.0b013e3181599b51

PubMed Abstract | CrossRef Full Text | Google Scholar

33. Doctor N, Yang S, Maerzacker S, Watkins P, Dissanaike S. Socioeconomic status and outcomes after burn injury. J Burn Care Res. (2016) 37:56–62. doi: 10.1097/BCR.0000000000000327

PubMed Abstract | CrossRef Full Text | Google Scholar

34. Münzberg M, Ziegler B, Fischer S, Wölfl CG, Grützner PA, Kremer T, et al. In view of standardization: comparison and analysis of initial management of severely burned patients in Germany, Austria and Switzerland. Burns. (2015) 41:33–8. doi: 10.1016/j.burns.2014.08.021

PubMed Abstract | CrossRef Full Text | Google Scholar

Keywords: artificial intelligence, burns, length of hospitalization, prediction, accuracy, paediatric

Citation: Elrod J, Mohr C, Wolff R, Boettcher M, Reinshagen K, Bartels P, German Burn Registry and Koenigs I (2021) Using Artificial Intelligence to Obtain More Evidence? Prediction of Length of Hospitalization in Pediatric Burn Patients. Front. Pediatr. 8:613736. doi: 10.3389/fped.2020.613736

Received: 03 October 2020; Accepted: 26 November 2020;
Published: 18 January 2021.

Edited by:

Francesco Morini, Bambino Gesù Children Hospital (IRCCS), Italy

Reviewed by:

Erik David Skarsgard, British Columbia Children's Hospital, Canada
Luca Pio, Hôpital Robert Debré, France

Copyright © 2021 Elrod, Mohr, Wolff, Boettcher, Reinshagen, Bartels, German Burn Registry and Koenigs. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.

*Correspondence: Julia Elrod, j.elrod@uke.de

Disclaimer: All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.