EHR data from patients with AML and AML-Simiar diseases
收藏资源简介:
This describes the datasets used for training and evaluation Onto-CGAN model sourced from the MIMIC-IV Clinical Database V2.2. The query script used for data extraction is listed below. Due to the restricted access policies of the MIMIC database, we are unable to publish the extracted subset of MIMIC data. However, researchers with authorized access to the MIMIC-IV database may request the experimental patient data from the corresponding author.<br><b>SQL Query in MIMIC </b><i>SELECT</i><i> </i><i>DISTINCT</i><i> </i><i>diag_table.subject_id</i><i>, </i><i>diag_table.icd_code</i><i>, </i><i>diag_table.hadm_id</i><i>, </i><i>patients_table.gender</i><i>, </i><i>patients_table.anchor_age</i><i>, </i><i>omr_table.result_name</i><i>, </i><i>omr_table.result_value</i><i>,</i><i>patients_table.dod</i><i>FROM</i><i> </i><i>`physionet-data.mimiciv_hosp.diagnoses_icd`</i><i> </i><i>AS</i><i> </i><i>diag_table</i><i>JOIN</i><i> </i><i>`physionet-data.mimiciv_hosp.patients`</i><i> </i><i>AS</i><i> </i><i>patients_table</i><i> </i><i>ON</i><i> </i><i>diag_table.subject_id</i><i> = </i><i>patients_table.subject_id</i><i>JOIN</i><i> </i><i>`physionet-data.mimiciv_hosp.omr`</i><i> </i><i>AS</i><i> </i><i>omr_table</i><i> </i><i>ON</i><i> </i><i>diag_table.subject_id</i><i> = </i><i>omr_table.subject_id</i><i>WHERE</i><i> </i><i>diag_table.icd_code</i><i> </i><i>LIKE</i><i> </i><i>'20%'</i>



