Abstract
IgA nephropathy (IgAN) is common worldwide and has heterogeneous phenotypes. Predicting long-term outcomes is important for clinical decision-making. As right-censored patients become common during the long-term follow-up, either excluding these patients from the cohort or labeling them as control will bias the risk estimation. Thus, we constructed a survival model using EXtreme Gradient Boosting for survival (XSBoost-Surv), to accurately predict the prognosis of IgAN patients by taking the time-to-event information into the modeling procedure. Shapley Additive exPlanations (SHAP) was employed to interpret the individual predicted result and the non-linear relationships between the predictors and outcome. Experiments on real-world data showed our model achieved superior discrimination performance over other conventional survival methods. By providing insights into the exact changes in risk induced by certain characteristics of the patients, this explainable and accurate survival model can help improve the clinical understanding of renal progression and benefit the therapies for the IgAN patients.
Introduction
Immunoglobulin A Nephropathy (IgAN), a condition that damages the glomeruli inside kidneys, is a leading cause of chronic kidney disease (CKD) and renal failure. Prevalence varies geographically, with higher incidence in Pacific Asian regions1,2. IgAN usually progresses slowly over years, but the course of the disease varies from person to person. Some people leak blood in their urine without developing problems, some eventually achieve complete remission and others develop end-stage kidney failure. As shown in recent long-term follow-up studies, up to 30-40% of IgAN patients develop end-stage kidney disease (ESKD) within 10-25 years, which demonstrates the prognosis for IgAN is poor2,3. Accurate long-term kidney prognosis prediction models are needed to support clinical decision making for precise treatment and management.
There have been some models established to predict the long-term prognosis of IgAN patients3,4. During the long-term follow-up, more and more patients may leave the study, meaning their status are unknown before the end of the study. Therefore, most of the previous IgAN prognosis models employed statistical survival methods, such as cox regression5, to deal with these censored records. However, these models usually made too strict assumptions on the data distribution3,5 and utilized small number of predictors, which resulted in inadequate performance. As the clinical presentations of IgAN patients are complicated, more complex models are needed to capture the relationships between variables and the target outcome. Machine learning models are more skilled in modeling the heterogeneous data and have achieved state-of-art results in many clinical tasks6-8. However, common machine learning practices ignore the right-censoring issue in the time-to-event data. In other words, these censored patients are either removed from the study cohort or labeled as control samples, which results in biased estimation of the predicted risk.
In our paper, we employed a machine learning survival method to build the long-term prognosis model, aiming to simultaneously learn the complex patterns hidden in the time-to-event data and handle the right-censoring issue. Recently, the objective function of EXtreme Gradient Boosting (XGBoost)9 has been modified to support the survival analysis, which we utilized in our paper and named as XGBoost-Surv to distinguish from that for classification. Despite of the superior performance in prediction accuracy, the machine learning models are often hard to use in clinical practice7 due to the unexplainable result. We here utilized the Shapley Additive exPlanations (SHAP)10 to explain why a prediction is made by XGBoost-Surv. Results showed that XGBoost-Surv made significant improvements over other conventional survival methods. Moreover, the interpretations of the prediction results offered deeper insight into the changes in risk induced by certain characteristics and thus could benefit the early intervention of the modifiable factors.
This study is an extension of our previous work11 by utilizing machine learning to build survival model instead of classification model and focus on offering explanations of the predicted result. We hope this work could make broad the application of machine learning in the clinical field.
Methods
2.1. Study population
Single-center data were retrieved consecutively from Nanjing Glomerulonephritis Registry between January 2006 and June 2009. Multicenter data were collected from 18 renal centers between January 1997 and June 2010. All follow-up data were updated to August 2017. This study followed the tenets of the Declaration of Helsinki, and was approved by the ethics committee of the Nanjing General Hospital (2010NLY-023), Nanjing, China. Written informed consent was obtained from all study participants.
The IgAN patients were recruited to our cohort according to the following criteria. Patients with biopsy-proven primary IgAN who were 18 years or older with a follow-up time exceeded 12 months, an estimated glomerular filtration rate (eGFR) ≥ 30 mL/min/1.73 m2, proteinuria ≥0.5 g/d, and a biopsy specimen with 8 or more total glomeruli on periodic acid-Schiff (PAS) staining were eligible for inclusion. Patients who progressed to end-stage kidney disease (ESKD) and 50% reduction in the eGFR within the first 12 months of follow-up were also included. Patients with secondary causes of mesangial IgA deposits, such as IgA vasculitis and autoimmune disorders, or those with comorbid conditions, such as diabetes mellitus and Alport’s syndrome were excluded.
Based on the criteria described, 2,047 IgAN patients were included in the study cohort. Patient data from a single clinical center were used as the derivation cohort, while patient data from a multicenter cohort were used as the external validation cohort.
2.2. Variables and Target Outcome
The eGFR was estimated using the chronic kidney disease epidemiology collaboration (CKD-EPI) formula. ESKD was defined as eGFR<15 mL/min/1.73 m2 for over 3 months, initiation of dialysis or transplantation. The mean arterial pressure (MAP) was defined as the diastolic pressure plus one-third of the pulse pressure. The time-averaged systolic, diastolic blood pressure, and MAP were calculated as previously reported4. Information about the type and duration of immunosuppressive treatment was recorded. Renin-angiotensin system blockade included any exposure to angiotensin-converting enzyme inhibitors, angiotensin receptor blockers, or both. The scoring sheet was based on the updated Oxford Classification for IgAN12. The exact biopsy tissue sections to be scored were marked on the PAS slides. In addition, capillary necrosis, arteries score, and malignant vascular changes were scored in this study. A total of 36 variables were included for candidate predictors, including epidemiological characteristics, clinical manifestations, clinical characteristics, pathological findings and treatments (Table 1).
Table 1.
Category | Variable name |
Epidemiological characteristics | Age at biopsy, Body Mass Index, Gender, Family history of kidney disease, Immunosuppression treatment prior to the biopsy, Renin-angiotensin system blockade prior to the biopsy |
Clinical manifestations | Hypertension before biopsy, Macroscopic hematuria before biopsy |
Clinical characteristics | Serum albumin (g/L), MAP (mm Hg), Serum creatinine (mg/dl),Estimated GFR (ml/min per 1.73m2), Urine protein (g/d), Serum cholesterol (mmol/L), Serum triglycerides (mmol/L), Serum uric acid (μmol/L), Microscopic hematuria (/microliter) |
Pathological findings | M, E, S, T, C, N, Mean mesangial score, Endocapillary hypercellularity, Global sclerosis, Segmental sclerosis, Necrosis, Crescents, Tubular atrophy /Interstitial fibrosis, Arteriosclerosis interlobular arteries, Arteriolar hyalinosis |
Treatments | Tonsillectomy, Immunosuppression treatment during follow-up time, Renin-angiotensin system blockade treatment during follow-up time, Statin treatment during follow-up time |
In this study, we defined the target outcome as the combined event (50% reduction in the eGFR or ESKD) after biopsy.
2.3. Machine learning analysis
2.3.1. Model Construction and Evaluation
The survival model was constructed by XGBoost-Surv on the derivation set. XGBoost is a gradient boosting approach13 which ensembles a series of relatively weak base classifiers into a stronger one in the sequential manner. Compared to the original version of XGBoost for classification, the objective function of XGBoost-Surv was modified into Cox loss function5 to adapt to the time-to-event data. In the derivation set, we used 5-fold cross-validation to tune the hyper-parameters of the XGBoost-Surv, including the “max depth of trees”, the “minimum loss reduction” required to make a further partition on a leaf node, the “boosting learning rate” and the “number of estimators”. The “objective” was set to “survival:cox” and the “booster” was set to “gbtree”. Other parameters were fixed as default.
We compared the performance of XGBoost-Surv model with other conventional survival methods, including random survival forest (RSF)14, support vector machine for survival (SVM-Surv)14,15 and the statistical method cox regression5 and cox with lasso penalty (lasso-cox)16. The hyper-parameters for lasso-cox, RSF and SVM-Surv were also optimized by 5-fold cross-validation on the derivation set.
2.3.1. Model Evaluation
We used the time-dependent concordance index (Ctd-index)17 to quantify the concordance between the predicted and true survival time of a set of patients. This metric is commonly used to evaluate and compare predictive models with censored data18. The Ctd-index evaluates whether predicted survival times are ranked in the same order as their true survival time. Because of censored data, the actual ordering of patient survival is not always available. For example, if patient i died at ti and patient j is still alive at ti and ti > tj, the actual order of this pair of patients’ survival is not available as patient j may or may not have died before ti. This pair of patients is defined as a non-admissible pair, in opposition to admissible pairs, where the actual order of patient survival is available.
The Ctd-index is defined as follows:
where concordant pairs are the pairs of patients that are correctly classified and admissible pairs are the pairs of patients that can be ordered. For example, (i, j) is admissible if patients i and j are not censored, or if patient i dies at t = k and patient j is censored at t>k. On the contrary, if patient i died at t=k′ and patient j is censored at t < k′, (i, j) is not admissible.
2.3.2. Model Interpretation
Shapley Additive exPlanations (SHAP)10 was utilized to interpret the prediction result of our model. SHAP method transforms the original complex machine learning models to simple linear addition approximations around each data point. Formally, SHAP explains the output of a model as a sum of each contributing variable where is the attribution of variable i to the predicted result for sample j. greater than zero means the variable i at the current value increases the predicted risk for individual j while less than zero indicates the opposite.
In our study, we utilized these in the derivation cohort to interpret the predicted result of the XGBoost-Surv model in three levels: (1) The general variable importance in the model by calculating the mean magnitude of the attributions values of each variable . (2) The relationship between each variable and the combined renal event by investigating how the attributions varied with the variable values. To be mentioned, we modified the original main effect plot offered by SHAP by fitting more interpretable curves from the points using generalized additive model19. (3) Individualized risk explanation by the for each IgAN patient;
3. Results
3.1. Study cohorts
The derivation cohort was comprised of 1022 patients and the median follow-up was 7.9 years (interquartile range, 6.6-9.8). The 5- and 10-year renal survival rates were 96.8% and 92%, respectively. The external validation cohort recruited 1025 patients and the median follow-up was 7.8 years (interquartile range, 3.0-12.0). The 5- and 10-year renal survival rates were 83.8% and 76.4%, respectively.
Among the 36 variables, the overall rate of missing data was 0.75% in the derivation cohort and 1.18% in the external validation cohort. Missing values were imputed by mean or mode for continuous and categorical variable respectively.
3.2. Model Evaluatoin
We listed Ctd-index of the applied methods in Table 2. The XGBoost-Surv model trained on the 36 variables had a Ctd-index of 0.822 (95% CI: 0.784-0.860) on the external validation set. The XGBoost-Surv achieved overwhelmed performance over the cox regression (0.655, 95% CI: 0.601-0.708), lasso-cox (0.795, 95% CI: 0.757-0.833), RSF (0.773, 95% CI: 0.730-0.815) and SVM-Surv (0.781, 95% CI: 0.741-0.821) on the external validation set.
Table 2.
Method | Derivation set | External validation set |
Cox Regression | 0.860 (0.815-0.905) | 0.655 (0.601-0.708) |
Lasso-cox | 0.831 (0.787-0.875) | 0.795 (0.757-0.833) |
RSF | 0.854 (0.815-0.893) | 0.773 (0.730-0.815) |
SVM-Surv | 0.866 (0.831-0.901) | 0.781 (0.741-0.821) |
XGBoost-Surv | 0.872 (0.834-0.911) | 0.822 (0.784-0.860) |
3.3. Model Interpretation
3.3.1. General Variable Importance in the XGBoost-Surv model
The general variable importance of the top ten variables obtained from SHAP as described in Methods were illustrated in Fig. 1. The Tubular atrophy/Interstitial fibrosis (%) and global sclerosis (%) were the strongest contributors to the model’s final decision. Among the top ten most important variables, five were clinical characteristics, three were pathological characteristics, one was the epidemiological information and one was the clinical manifestations.
3.3.2. Relationships between the variables and the predicted risk
As described in the method, the effect of varying variable values indicates the relationship between the variable and the predicted risk. Fig. 2 demonstrated the results from some typical variables. Results showed that XGBoost-Surv did capture the non-linear relationships between the predictors and the combined renal event. The relationship of the tubular atrophy/interstitial fibrosis was two phased, segmented by the value between 30% and 40%. The tubular atrophy/interstitial fibro more than 40% increased the risk of IgAN progression while less than 30% would be beneficial for the progression. Similar pattern existed in the variable of age. It was interesting to discover that serum triglycerides displayed a U-shaped relationship with the combined renal event, which meant both too high or too low values would increase the predicted risk. The global sclerosis and urine protein linearly related to the predicted risk at lower values and then kept constant after reaching a certain threshold.
3.3.3. Individualized interpretation of the predicted risk
Fig. 3 demonstrated two examples of the individualized interpretation results from SHAP. The figure explained how the patients got his/her predicted risk of within 5-year combined renal event given the status of the 36 variables. For the IgAN patient in Fig. 3a, XGBoost-Surv predicted his/her risk as 0.09, mainly contributed by the variables listed in the horizontal line. The global sclerosis (% of glomeruli) 8.1%, Serum uric acid 228.0 μmol/L and serum albumin 44.1 g/L were the main factors that pushed the patient’s 5-year combined event risk to lower values from the baseline risk. The serum triglycerides 0.72 mmol/L was the main factor that pushed the predicted risk to higher values. For the patient in Fig. 3b, the predicted risk was 0.55, whose age of 20 years old, urine protein at 12.7 g/24hr were the top two contributors to the high predicted risk while the global sclerosis (% of glomeruli) 10% decreased the predicted risk.
4. Discussion
Patients with IgAN have various clinical presentations and histological lesions leading to difference prognoses, and approximately 50% of these patients still have a risk of progression in five to ten years2. Therefore, obtaining long-term accurate individualized risk estimates for decisions on further management are important20. We proposed a survival model to predict the risk of combined renal event for IgAN patients by incorporating the machine learning method XGBoost-Surv and a model interpretation approach SHAP. The model we constructed achieved not only high accuracy but also good clinical interpretability. The observed efficacy suggests the ML models can be a powerful tool in predicting the prognosis for the IgAN patients.
During the long-term follow-up, patients may leave the study before the target event occur or the end of the study. As methods for classification task do not consider the time to event information, the common machine learning practice is to exclude the censored patients or label them as the control samples. However, the former means may result in insufficient data and the latter one decreases the event rate, both of which can bias the predicted risk. One rational solution is to utilize the survival analysis to handle the time-to-event data. Although the traditional statistical survival models such as cox regression5 can deal with the censored issue and are user-friendly, they often require strong assumptions in data, including the linear relationship, independence of observations and no multi-collinearity among variables21. For complex data, these oversimplified models may result in inadequate predictive accuracy and insufficient subsequent decision making.
Considering the above challenges, we employed the machine learning survival method XGBoost-Surv, to learn the complex relationships hidden in the time-to-event data. Specifically, XGBoost-Surv employs regression tree as its base classifier, which can handle numerical data that are highly skewed and multimodal. As observed, the XGBoost-Surv model achieved an overwhelmed Ctd-index of 0.822 (95% CI: 0.784-0.860) than the cox regression model (0.655, 95% CI: 0.601-0.708) on the external validation set. The lasso-cox model (0.795, 95% CI: 0.757-0.833) behaved better than the cox mainly benefiting from its embedded feature selection mechanism. But it was still less accurate than XGBoost-Surv due to its strong assumption on the linearity. XGBoost-Surv also beat random survival forest on our data. Compared to random survival forest (0.773, 95% CI: 0.730-0.815), which is also an ensemble tree system, XGBoost-Surv is trained in an additive manner, which makes it focus on the residuals left by the previous training in each round. This mechanism helps XGBoost-Surv to gain more precise prediction under fine parameter tuning. We also applied SVM-Surv on our problem. As we know, SVM needs a kernel to project the data into a space where it can separate the data points when they are not linearly separable. However, it’s hard to find a kernel perfectly suitable to a data distribution. In contrast, XGBoost-Surv adapts to the data automatically and thus achieved better performance (0.822, 95% CI: 0.784-0.860) vs. (0.781, 95% CI: 0.741-0.821) on the IgAN data.
The complex mechanism of the machine learning approaches makes their results hard to interpret. Unlike the widely employed statistical approach cox regression, whose coefficients tell the effect of the predictive factors on the outcome, the un-transparency issue of the complex ML algorithm applied in medical tasks are seriously criticized and doubted in recent years22-24. In this study, we showed that the machine learning algorithm could give better insight into the predicted risk by utilizing SHAP to demonstrate the complex relationship between predictors and outcome. Some of our findings showed consistency with the previous studies and some were novel and interesting discoveries. Prior studies have verified younger age as risk factor for aggressive IgAN, while advanced age is protective4, which is consistent with our results. Urine protein >1 g/d is a risk factor for IgAN that has long been widely recognized4,25, which is very approximate with our turning point 1.25g/d. The risk factor hypertension found in the previous studies also agrees with our findings. In the IgAN Oxford classification26, Tubular atrophy/ interstitial fibrosis plays important roles. Global sclerosis of the glomerulus has also been confirmed by many studies and has a significant influence on the prognosis of the kidney27,28. This variable can predict long-term kidney prognosis more accurately when combined with tubular atrophy/interstitial fibrosis29, which is also reflected in our result. Our study also explained why the model predicted the risk value for a specific individual. By providing the adverse and beneficial contributors, our proposed model allowed clinicians to plan appropriate interventions. For the patient in Fig. 3b, interventions should be made to lower the patient’s characteristic of urine protein. Deserved to be mentioned, the proposed model has been implemented in a risk prediction system for IgAN patients and used in real world application. Fig. 4 illustrated a screenshot of the system.
Our study also demonstrated its limitations. Firstly, the cohort was not a prospective therapeutic trial, and the therapeutic interventions in patients were variable, although we did not identify treatment-related factors that significantly affect the prognosis. Secondly, the prediction model was established based on data obtained from the Chinese population, and the applicability of the results to other races and regions still needs to be verified. Thirdly, although XGBoost-Surv can capture the complex relationship between variable and the combined renal event, it is still limited by the proportional hazard assumption. In future work, deep learning for survival30 which leverages from the assumption about the stochastic process can be tried.
Conclusion
In conclusion, the proposed XGBoost-Surv model in our study can be an effective tool to predict the long-term event of the IgAN patients, and offer explanations on how the patients’ characteristics and the clinical variables influence their prognosis. We hope the proposed model could benefit individualized treatment and management in IgAN patients and our work can contribute to make broad the applications of the machine learning techniques in clinical filed.
Acknowledgment
This work was funded by the China National Key R&D Program (Grant No. 2018YFC0910700).
Figures & Table
References
- 1.Li L.S., Liu Z.H. Epidemiologic data of renal diseases from a single unit in China: analysis based on 13,519 renal biopsies. Kidney Int. 2004;66(3):920–3. doi: 10.1111/j.1523-1755.2004.00837.x. [DOI] [PubMed] [Google Scholar]
- 2.Magistroni R., et al. New developments in the genetics, pathogenesis, and therapy of IgA nephropathy. Kidney Int. 2015;88(5):974–89. doi: 10.1038/ki.2015.252. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 3.Berthoux F., et al. Predicting the risk for dialysis or death in IgA nephropathy. J Am Soc Nephrol. 2011;22(4):752–61. doi: 10.1681/ASN.2010040355. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 4.Goto M., et al. A scoring system to predict renal outcome in IgA nephropathy: a nationwide 10-year prospective cohort study. Nephrol Dial Transplant. 2009;24(10):3068–74. doi: 10.1093/ndt/gfp273. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 5.Cox D.R. Regression models and life-tables. Journal of the Royal Statistical Society: Series B (Methodological) 1972;34(2):187–202. [Google Scholar]
- 6.Lee S.I., et al. A machine learning approach to integrate big data for precision medicine in acute myeloid leukemia. Nat Commun. 2018;9(1):42. doi: 10.1038/s41467-017-02465-5. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 7.Motwani M., et al. Machine learning for prediction of all-cause mortality in patients with suspected coronary artery disease: a 5-year multicentre prospective registry analysis. Eur Heart J. 2017;38(7):500–507. doi: 10.1093/eurheartj/ehw188. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 8.Rajkomar A., Dean J., Kohane I. Machine Learning in Medicine. N Engl J Med. 2019;380(14):1347–1358. doi: 10.1056/NEJMra1814259. [DOI] [PubMed] [Google Scholar]
- 9.Chen T., Guestrin C. Xgboost: A scalable tree boosting system. in Proceedings of the 22nd acm sigkdd international conference on knowledge discovery and data mining.2016. [Google Scholar]
- 10.Lundberg S.M., Lee S.-I. A unified approach to interpreting model predictions. in Advances in neural information processing systems. 2017.
- 11.Chen T., et al. Prediction and Risk Stratification of Kidney Outcomes in IgA Nephropathy. Am J Kidney Dis. 2019;74(3):300–309. doi: 10.1053/j.ajkd.2019.02.016. [DOI] [PubMed] [Google Scholar]
- 12.Trimarchi H., et al. Oxford Classification of IgA nephropathy 2016: an update from the IgA Nephropathy Classification Working Group. Kidney Int. 2017;91(5):1014–1021. doi: 10.1016/j.kint.2017.02.003. [DOI] [PubMed] [Google Scholar]
- 13.Mason L., et al. Boosting algorithms as gradient descent. in Advances in neural information processing systems. 2000.
- 14.Ishwaran H., et al. Random survival forests. The annals of applied statistics. 2008;2(3):841–860. [Google Scholar]
- 15.Pölsterl S., Navab N., Katouzian A. Fast training of support vector machines for survival analysis. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases; Springer. 2015. [Google Scholar]
- 16.Tibshirani R. The lasso method for variable selection in the Cox model. Statistics in medicine. 1997;16(4):385–395. doi: 10.1002/(sici)1097-0258(19970228)16:4<385::aid-sim380>3.0.co;2-3. [DOI] [PubMed] [Google Scholar]
- 17.Gerds T.A., et al. Estimating a time-dependent concordance index for survival prediction models with covariate dependent censoring. Stat Med. 2013;32(13):2173–84. doi: 10.1002/sim.5681. [DOI] [PubMed] [Google Scholar]
- 18.Uno H., et al. On the C-statistics for evaluating overall adequacy of risk prediction procedures with censored survival data. Statistics in medicine. 2011;30(10):1105–1117. doi: 10.1002/sim.4154. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 19.Wood S.N. Stable and efficient multiple smoothing parameter estimation for generalized additive models. Journal of the American Statistical Association. 2004;99(467):673–686. [Google Scholar]
- 20.Barbour S.J., Reich H.N. Risk stratification of patients with IgA nephropathy. Am J Kidney Dis. 2012;59(6):865–73. doi: 10.1053/j.ajkd.2012.02.326. [DOI] [PubMed] [Google Scholar]
- 21.Ranganathan P., Pramesh C.S., Aggarwal R. Common pitfalls in statistical analysis: Logistic regression. Perspect Clin Res. 2017;8(3):148–151. doi: 10.4103/picr.PICR_87_17. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 22.Rauen T., et al. Intensive Supportive Care plus Immunosuppression in IgA Nephropathy. N Engl J Med. 2015;373(23):2225–36. doi: 10.1056/NEJMoa1415463. [DOI] [PubMed] [Google Scholar]
- 23.McDonald L., et al. Unintended consequences of machine learning in medicine? F1000Res. 2017;6:1707. doi: 10.12688/f1000research.12693.1. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 24.Kelly C.J., et al. Key challenges for delivering clinical impact with artificial intelligence. BMC Med. 2019;17(1):195. doi: 10.1186/s12916-019-1426-2. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 25.Le W., et al. Long-term renal survival and related risk factors in patients with IgA nephropathy: results from a cohort of 1155 cases in a Chinese adult population. Nephrol Dial Transplant. 2012;27(4):1479–85. doi: 10.1093/ndt/gfr527. [DOI] [PubMed] [Google Scholar]
- 26.Alamartine E., et al. The use of the Oxford classification of IgA nephropathy to predict renal survival. Clin J Am Soc Nephrol. 2011;6(10):2384–8. doi: 10.2215/CJN.01170211. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 27.Kawamura T., et al. A histologic classification of IgA nephropathy for predicting long-term prognosis: emphasis on end-stage renal disease. J Nephrol. 2013;26(2):350–7. doi: 10.5301/jn.5000151. [DOI] [PubMed] [Google Scholar]
- 28.Lemley K.V., et al. Prediction of early progression in recently diagnosed IgA nephropathy. Nephrol Dial Transplant. 2008;23(1):213–22. doi: 10.1093/ndt/gfm560. [DOI] [PubMed] [Google Scholar]
- 29.Tsuboi N., et al. Glomerular density in renal biopsy specimens predicts the long-term prognosis of IgA nephropathy. Clin J Am Soc Nephrol. 2010;5(1):39–44. doi: 10.2215/CJN.04680709. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 30.Ren K., et al. Deep recurrent survival analysis. in Proceedings of the AAAI Conference on Artificial Intelligence.2019. [Google Scholar]