Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -33,7 +33,7 @@ data
|
|
33 |
# Dataset & Samples
|
34 |
In these files there are following fields:
|
35 |
|
36 |
-
1) PARAMETERS OF SAMPLE SIMULATION
|
37 |
- **sample** is a type of the sample (train, val, test). These field is need to split dataset into train-validate-test samples for ML-model training;
|
38 |
- **H0_H1** is a true hypothesis: if **H0**, then test statistics were simulated under S1(t)=S2(t); if **H1**, then test statistics were simulated under S1(t)≠S2(t);
|
39 |
- **Hi** is an alternative hypothesis (H01-H09, H11-H19, or H21-H29) for S1(t) and S2(t). Detailed description of these alternatives can be found in the paper;
|
@@ -43,7 +43,7 @@ In these files there are following fields:
|
|
43 |
- **real_perc1** is an actual censoring rate of sample 1;
|
44 |
- **real_perc2** is an actual censoring rate of sample 2;
|
45 |
|
46 |
-
2) STATISTICS OF CLASSICAL TWO-SAMPLE TESTS
|
47 |
- **Peto_test** is a statistic of the Peto and Peto’s Generalized Wilcoxon test (which is computed on two samples under parameters described above);
|
48 |
- **Gehan_test** is a statistic of the Gehan’s Generalized Wilcoxon test;
|
49 |
- **logrank_test** is a statistic of the logrank test;
|
@@ -61,12 +61,12 @@ In these files there are following fields:
|
|
61 |
- **WLg_Prentice_test** is a statistic of the Weighted Logrank test (weighted function: 'Prentice');
|
62 |
- **WKM_test** is a statistic of the Weighted Kaplan-Meier test;
|
63 |
|
64 |
-
3) STATISTICS OF THE PROPOSED ML-METHODS FOR TWO-SAMPLE PROBLEM
|
65 |
- **CatBoost_test** is a statistic of the proposed ML-method based on the CatBoost framework;
|
66 |
-
- **XGBoost_test** ;
|
67 |
- **LightAutoML_test** is a statistic of the proposed ML-method based on the LightAutoML (LAMA) framework;
|
68 |
-
- **SKLEARN_RF_test** ;
|
69 |
-
- **SKLEARN_LogReg_test** ;
|
70 |
- **SKLEARN_GB_test** are test statistics of the proposed ML-based methods.
|
71 |
|
72 |
|
|
|
33 |
# Dataset & Samples
|
34 |
In these files there are following fields:
|
35 |
|
36 |
+
1) PARAMETERS OF SAMPLE SIMULATION
|
37 |
- **sample** is a type of the sample (train, val, test). These field is need to split dataset into train-validate-test samples for ML-model training;
|
38 |
- **H0_H1** is a true hypothesis: if **H0**, then test statistics were simulated under S1(t)=S2(t); if **H1**, then test statistics were simulated under S1(t)≠S2(t);
|
39 |
- **Hi** is an alternative hypothesis (H01-H09, H11-H19, or H21-H29) for S1(t) and S2(t). Detailed description of these alternatives can be found in the paper;
|
|
|
43 |
- **real_perc1** is an actual censoring rate of sample 1;
|
44 |
- **real_perc2** is an actual censoring rate of sample 2;
|
45 |
|
46 |
+
2) STATISTICS OF CLASSICAL TWO-SAMPLE TESTS
|
47 |
- **Peto_test** is a statistic of the Peto and Peto’s Generalized Wilcoxon test (which is computed on two samples under parameters described above);
|
48 |
- **Gehan_test** is a statistic of the Gehan’s Generalized Wilcoxon test;
|
49 |
- **logrank_test** is a statistic of the logrank test;
|
|
|
61 |
- **WLg_Prentice_test** is a statistic of the Weighted Logrank test (weighted function: 'Prentice');
|
62 |
- **WKM_test** is a statistic of the Weighted Kaplan-Meier test;
|
63 |
|
64 |
+
3) STATISTICS OF THE PROPOSED ML-METHODS FOR TWO-SAMPLE PROBLEM
|
65 |
- **CatBoost_test** is a statistic of the proposed ML-method based on the CatBoost framework;
|
66 |
+
- **XGBoost_test** is a statistic of the proposed ML-method based on the XGBoost framework;
|
67 |
- **LightAutoML_test** is a statistic of the proposed ML-method based on the LightAutoML (LAMA) framework;
|
68 |
+
- **SKLEARN_RF_test** is a statistic of the proposed ML-method based on Random Forest (implemented in sklearn);
|
69 |
+
- **SKLEARN_LogReg_test** is a statistic of the proposed ML-method based on Logistic Regression (implemented in sklearn);
|
70 |
- **SKLEARN_GB_test** are test statistics of the proposed ML-based methods.
|
71 |
|
72 |
|