MIT-LCP / eicu-code

Code and website related to the eICU Collaborative Research Database

Home Page:https://eicu-crd.mit.edu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Find continuous infusion of drug when drug amount is missing

ireneangelucci opened this issue · comments

I am working with the infusionDrug.csv table and I noticed that for many entries the drugamount is missing, as in the case below:

Screenshot 2024-03-27 at 14 09 05

In such a case, is there a way I can know if Heparin was administered continuously from infusiondrugoffset = 32 to infusiondrugoffset = 2363?

I know that if the drugamount was also present I could consider the administration to be continuous up to the point when drugrate * length of time is equal to the drugamount, but in this case how can I know?

I am asking this because I would like to sample the data with a 5 minute time step, therefore I would like to know if, for example, between infusiondrugoffset = 893 and infusiondrugoffset = 953 the drugrate should also be 1300. Thank you.

For this particular case, I think what you say makes sense, but I would work through some additional patients from the same hospital_id and test your assumptions, particularly if this is a important feature of your work.

For data like this, it will be difficult to assess when the infusion 'ends', and the only suggestion I can give is to try to incorporate some clinical knowledge (typical drugamounts, assessment intervals, etc) if you haven't already.