Starttime of Medication #1822
-
Hi everyone, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The antibiotics table is derived from prescriptions, which is the intention to treat. So the start time and end times are approximate, more or less when the prescription is valid for. If you want exactly when the antibiotic was given, you'll have to switch to writing your own query using the emar and emar_detail tables. These have precise administrations (as the data is sourced from bar code scanning). Unfortunately not all patients have data in emar because the system was rolled out mid way through the data collection for MIMIC-IV. Roughly half of the patients will have data in the table. It's also a fairly dense table because it captures every single administration, e.g. if a dose requires 3 pills, there are 3 rows and then another "main" row describing the overall administration. There aren't too many queries available for it yet regrettably. |
Beta Was this translation helpful? Give feedback.
The antibiotics table is derived from prescriptions, which is the intention to treat. So the start time and end times are approximate, more or less when the prescription is valid for.
If you want exactly when the antibiotic was given, you'll have to switch to writing your own query using the emar and emar_detail tables. These have precise administrations (as the data is sourced from bar code scanning). Unfortunately not all patients have data in emar because the system was rolled out mid way through the data collection for MIMIC-IV. Roughly half of the patients will have data in the table. It's also a fairly dense table because it captures every single administration, e.g. if a dose requi…