Precise time of in_hospital_mortality #1865
Unanswered
pszolovits
asked this question in
MIMIC-IV
Replies: 1 comment
-
Hi! I am wondering how you solve this problem? I am also confused about this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to figure out more precisely when a patient dies during an ICU stay, but am somewhat confused by how to interpret the data that occur in MIMIC-IV. Here are some observations. I would appreciate any insights on these:
dod
field of thepatients
table, but only to the nearest date, not a more precise time. It can also be seen from thedeathtime
field ofadmissions
, which is a timestamp.hospital_expire_flag
inadmissions
, 8609 patients died in the hospital. However,deathtime
is non-null for only 8598 patients, so 11 died but have no specific time of death.deathtime
anddod
, for nearly all of the 8598 patients who died in the hospital, in all but five cases,deathtime
falls within the day specified indod
. However, there are five instances in whichdeathtime
comes up to 94 hours afterdod
.admissions
frequently have multipleicustays
associated with each, presumably a patient can only die during or after their latest ICU stay. Thus, for those who died, we should be able to align the patient, admission and icustay to see various ways one could precisely estimate how much time elapsed from ICUintime
(my index time for most of these analyses) until death. However, death does not necessarily occur in the ICU, and there seem to be 1,639 patients who die during a time when they are not in the ICU, though they are in the hospital. 5,319 die during an ICU stay.outttime
relates todeathtime
for those who die in the ICU. Oddly, although most dead people seem to haveouttimes
within a day of their deaths in the ICU, there are a few outliers who are not discharged from the ICU until as much as 140 hours after death. I don't understand exactly what ICUouttime
really means in these cases.stay_id
) that occurs during a particular hospitalization (hadm_id
) should have itsintime
andouttime
within the span of the hospitalization'sadmittime
anddischtime
. This is true in the data.intime
) until their deaths. For these patients, the mean is 125 hours (a bit over 5 days), and the median is 61 hours, so half die within a very few days.Beta Was this translation helpful? Give feedback.
All reactions