Replies: 1 comment
-
When I check this problem through the following steps select *
from chartevents
where stay_id = '39615949'
and itemid = '224639'
order by charttime
(only show some result) select *
from inputevents
where stay_id = '39615949'
order by starttime
Question2: patientweight in Question3: as @mpierrau said, patientweight results from inputevents in stay_id = '39615949' has huge fluctuation. Is it normal or error? |
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
-
Hi!
I have been working on MIMIC-IV for some time and recently discovered that the column
patientweight
has some extreme inconsistencies for somestay_id
which I fail to find a reasonable explanation.There are multiple rows with
starttime
within minutes but with differentpatientweight
. I understand this can happen, but the problem is that some differences are extremely big -- like tens of kilos difference.I've been parsing MIMIC-IV using Python so I don't have a nice reproducible SQL code for you, but you can have a look at for example
stay_id
's:39615949 (diff 170 kg between starttime 2145-10-06 20:52:00 and starttime 2145-10-06 22:31:00)
35032951 (diff 23 kg)
38680231 (diff 25 kg)
33230840 (diff 107 kg)
...
Can you provide a reason for why this is?
Is daily weight (itemid 224639 in chartevents) or admission weight (itemid 226512 in chartevents) a better option?
Kindly,
Magnus
Beta Was this translation helpful? Give feedback.
All reactions