├── README.md ├── data ├── all_v3.csv ├── data_corhort │ ├── first24h_bicarbonate.csv │ ├── first24h_bun.csv │ ├── first24h_fio2_1.csv │ ├── first24h_gcseyes_1.csv │ ├── first24h_gcsmotor_1.csv │ ├── first24h_gcsverbal_1.csv │ ├── first24h_hr_1.csv │ ├── first24h_po2.csv │ ├── first24h_potassium_1.csv │ ├── first24h_sbp_1.csv │ ├── first24h_sodium_2.csv │ ├── first24h_t_c1.csv │ ├── first24h_urine_1.csv │ └── first24h_wbc_1.csv └── stats_res │ ├── stats_bicarbonate.csv │ ├── stats_bun.csv │ ├── stats_fio2.csv │ ├── stats_gcseyes.csv │ ├── stats_gcsmotor.csv │ ├── stats_gcsverbal.csv │ ├── stats_hr.csv │ ├── stats_po2.csv │ ├── stats_potassium.csv │ ├── stats_sbp.csv │ ├── stats_sodium.csv │ ├── stats_t.csv │ ├── stats_urine.csv │ └── stats_wbc.csv ├── evaluate ├── baseline_roc_curve.py ├── baseline_simple statistics.py ├── scoring systems.py └── 编码转换成统计量.py ├── model ├── ga_1.py ├── main.py └── 超级学习器的交叉验证.py └── preprocess ├── cal_statistics_ofindex.py ├── dataget.py ├── get_data └── patient_index_count.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/README.md -------------------------------------------------------------------------------- /data/all_v3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/all_v3.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_bicarbonate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_bicarbonate.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_bun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_bun.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_fio2_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_fio2_1.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_gcseyes_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_gcseyes_1.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_gcsmotor_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_gcsmotor_1.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_gcsverbal_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_gcsverbal_1.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_hr_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_hr_1.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_po2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_po2.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_potassium_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_potassium_1.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_sbp_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_sbp_1.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_sodium_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_sodium_2.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_t_c1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_t_c1.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_urine_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_urine_1.csv -------------------------------------------------------------------------------- /data/data_corhort/first24h_wbc_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/data_corhort/first24h_wbc_1.csv -------------------------------------------------------------------------------- /data/stats_res/stats_bicarbonate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_bicarbonate.csv -------------------------------------------------------------------------------- /data/stats_res/stats_bun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_bun.csv -------------------------------------------------------------------------------- /data/stats_res/stats_fio2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_fio2.csv -------------------------------------------------------------------------------- /data/stats_res/stats_gcseyes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_gcseyes.csv -------------------------------------------------------------------------------- /data/stats_res/stats_gcsmotor.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_gcsmotor.csv -------------------------------------------------------------------------------- /data/stats_res/stats_gcsverbal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_gcsverbal.csv -------------------------------------------------------------------------------- /data/stats_res/stats_hr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_hr.csv -------------------------------------------------------------------------------- /data/stats_res/stats_po2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_po2.csv -------------------------------------------------------------------------------- /data/stats_res/stats_potassium.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_potassium.csv -------------------------------------------------------------------------------- /data/stats_res/stats_sbp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_sbp.csv -------------------------------------------------------------------------------- /data/stats_res/stats_sodium.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_sodium.csv -------------------------------------------------------------------------------- /data/stats_res/stats_t.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_t.csv -------------------------------------------------------------------------------- /data/stats_res/stats_urine.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_urine.csv -------------------------------------------------------------------------------- /data/stats_res/stats_wbc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/data/stats_res/stats_wbc.csv -------------------------------------------------------------------------------- /evaluate/baseline_roc_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/evaluate/baseline_roc_curve.py -------------------------------------------------------------------------------- /evaluate/baseline_simple statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/evaluate/baseline_simple statistics.py -------------------------------------------------------------------------------- /evaluate/scoring systems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/evaluate/scoring systems.py -------------------------------------------------------------------------------- /evaluate/编码转换成统计量.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/evaluate/编码转换成统计量.py -------------------------------------------------------------------------------- /model/ga_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/model/ga_1.py -------------------------------------------------------------------------------- /model/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/model/main.py -------------------------------------------------------------------------------- /model/超级学习器的交叉验证.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/model/超级学习器的交叉验证.py -------------------------------------------------------------------------------- /preprocess/cal_statistics_ofindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/preprocess/cal_statistics_ofindex.py -------------------------------------------------------------------------------- /preprocess/dataget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/preprocess/dataget.py -------------------------------------------------------------------------------- /preprocess/get_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/preprocess/get_data -------------------------------------------------------------------------------- /preprocess/patient_index_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MenglinLu/Patient-representation-based-on-statistics/HEAD/preprocess/patient_index_count.py --------------------------------------------------------------------------------