Skip to content

Commit

Permalink
Update diagnoses.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaRocheteau committed Feb 26, 2021
1 parent 674537b commit 5167eea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eICU_preprocessing/diagnoses.sql
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ create materialized view diagnoses as
-- for admission diagnoses:
select ad.patientunitstayid, ad.admitdxpath as diagnosisstring
from admissiondx as ad
inner join ld_labels as l on l.patientunitstayid = ad.patientunitstayid
inner join labels as l on l.patientunitstayid = ad.patientunitstayid
inner join patient as p on p.patientunitstayid = ad.patientunitstayid
where ad.admitdxenteredoffset < 1440;
-- It extracts data from 89143 patients
-- It extracts data from 89143 patients

0 comments on commit 5167eea

Please sign in to comment.