Skip to content

Any other way to get infusion/ingredient drugs in the ICU other than items_ID? #1575

Answered by alistairewj
ededededb asked this question in MIMIC-IV
Discussion options

You must be logged in to vote

One thing that's important to note is that inputevents only contains continuous infusions from a fixed list determined apriori. This means that there are a few medications which aren't in inputevents, and you'd have to look elsewhere (prescriptions for intention to treat, emar for administrations).

That being said, I don't think they use TXA. They use aminocaproic acid (Amicar).

select itemid, label n from `physionet-data.mimiciv_icu.d_items`
where lower(label) like '%tranexamic%'
or lower(label) like '%lysteda%'
or lower(label) like '%txa%'
or lower(label) like '%aminocaproic%'
or lower(label) like '%amicar%'
itemid label
229058 Aminocaproic acid (Amicar)
229249 Aminocaproic aci…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by ededededb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants