Datasets:

Modalities:
Tabular
Text
Formats:
csv
ArXiv:
DOI:
Libraries:
Datasets
pandas
License:
pfilonenko commited on
Commit
a3599e1
·
verified ·
1 Parent(s): c7f79ad

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -5
README.md CHANGED
@@ -32,6 +32,7 @@ data
32
 
33
  # Dataset & Samples
34
  In these files there are following fields:
 
35
  - **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;
36
  - **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);
37
  - **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;
@@ -40,6 +41,7 @@ In these files there are following fields:
40
  - **perc** is a set (expected) censoring rate for the samples 1 and 2;
41
  - **real_perc1** is an actual censoring rate of sample 1;
42
  - **real_perc2** is an actual censoring rate of sample 2;
 
43
  - **Peto_test** is a statistic of the Peto and Peto’s Generalized Wilcoxon test (which is computed on two samples under parameters described above);
44
  - **Gehan_test** is a statistic of the Gehan’s Generalized Wilcoxon test;
45
  - **logrank_test** is a statistic of the logrank test;
@@ -56,11 +58,12 @@ In these files there are following fields:
56
  - **WLg_PetoPrentice_test** is a statistic of the Weighted Logrank test (weighted function: 'Peto-Prentice');
57
  - **WLg_Prentice_test** is a statistic of the Weighted Logrank test (weighted function: 'Prentice');
58
  - **WKM_test** is a statistic of the Weighted Kaplan-Meier test;
59
- - **CatBoost_test** is a statistic of the proposed ML-method based on the CatBoost framework,
60
- - **XGBoost_test**,
61
- - **LightAutoML_test** is a statistic of the proposed ML-method based on the LightAutoML (LAMA) framework,
62
- - **SKLEARN_RF_test**,
63
- - **SKLEARN_LogReg_test**,
 
64
  - **SKLEARN_GB_test** are test statistics of the proposed ML-based methods.
65
 
66
 
 
32
 
33
  # Dataset & Samples
34
  In these files there are following fields:
35
+ --- sample parameters ---
36
  - **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;
37
  - **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);
38
  - **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;
 
41
  - **perc** is a set (expected) censoring rate for the samples 1 and 2;
42
  - **real_perc1** is an actual censoring rate of sample 1;
43
  - **real_perc2** is an actual censoring rate of sample 2;
44
+ --- classical two-sample tests ---
45
  - **Peto_test** is a statistic of the Peto and Peto’s Generalized Wilcoxon test (which is computed on two samples under parameters described above);
46
  - **Gehan_test** is a statistic of the Gehan’s Generalized Wilcoxon test;
47
  - **logrank_test** is a statistic of the logrank test;
 
58
  - **WLg_PetoPrentice_test** is a statistic of the Weighted Logrank test (weighted function: 'Peto-Prentice');
59
  - **WLg_Prentice_test** is a statistic of the Weighted Logrank test (weighted function: 'Prentice');
60
  - **WKM_test** is a statistic of the Weighted Kaplan-Meier test;
61
+ --- proposed ML-methods for two-sample problem ---
62
+ - **CatBoost_test** is a statistic of the proposed ML-method based on the CatBoost framework;
63
+ - **XGBoost_test** ;
64
+ - **LightAutoML_test** is a statistic of the proposed ML-method based on the LightAutoML (LAMA) framework;
65
+ - **SKLEARN_RF_test** ;
66
+ - **SKLEARN_LogReg_test** ;
67
  - **SKLEARN_GB_test** are test statistics of the proposed ML-based methods.
68
 
69