You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i'm interested in working with MIMIC on a project concerning patients that received ECMO therapy during their stay. I want to first identify patients what were hooked up to an ECMO during their stay. I wrot the following query to check for item ids concerned with ECMO therapy:
SELECT
stay_id,
MIN(charttime) AS ecmo_start,
MAX(charttime) AS ecmo_end
FROMmimiciv_icu.charteventsWHERE
itemid =229268-- circuit configurationAND value ='VA'-- filter for VA ECMOGROUP BY
stay_id
I want to explicitely filter for patients that received veno-arterial ECMO therapy. By doing this I get back 73 patients that received this kind of therapy. Seems to be a very low number. Does anyone have experience with this patient collective in MIMIC and has an explanation for this? Or am I missing something?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Dear Mimic-Community,
i'm interested in working with MIMIC on a project concerning patients that received ECMO therapy during their stay. I want to first identify patients what were hooked up to an ECMO during their stay. I wrot the following query to check for item ids concerned with ECMO therapy:
I want to explicitely filter for patients that received veno-arterial ECMO therapy. By doing this I get back 73 patients that received this kind of therapy. Seems to be a very low number. Does anyone have experience with this patient collective in MIMIC and has an explanation for this? Or am I missing something?
Kind regards
Beta Was this translation helpful? Give feedback.
All reactions