This repo is released as a part of MIMICEL: MIMIC-IV Event Log for Emergency Department on PhysioNet. All notable changes to this project will be documented in this file.
2.1.0 - 2023-06-01
Changed
- Removed 59 cases with zero or negative ED length of stay, meaning the event
Enter the ED
occurred at the same time or after the eventDischarge from the ED
in the same ED stay. This cleaning operation is implemented in a new SQL script named4_clean.sql
.
Fixed
- Fixed a bug when integrating the diagnosis table with the activity
Discharge from the ED
.LEFT JOIN
is utilised (instead ofINNER JOIN
) to include 1098 cases. This fix is implemented in2_activity.sql
. - Fixed a bug to remove events occurred at the same time or after the event
Discharge from the ED
in a single ED stay, due to the fact that discharge should represent the unique end of an ED stay (refer to Step 5 in the Methods section). This fix is implemented in2_activity.sql