For the complete documentation index, see llms.txt. This page is also available as Markdown.

MIMIC-IV

Overview

The Medical Information Mart for Intensive Care (MIMIC) is a publicly available repository of deidentified electronic health record (EHR) data from patients admitted to the Beth Israel Deaconess Medical Center (BIDMC) in Boston, Massachusetts. This resource was created in collaboration with Massachusetts Institute of Technology to lower barriers to reproducible clinical research by making real world hospital data accessible in a deidentified form.

MIMIC is organized into four datasets, which altogether contain five modules. The following info pertain to their latest versions:

MIMIC-IV (version 3.1): This dataset contains info derived from 2008-2022.

  • The Hosp module contains hospital-level tables related to 546,028 hospitalizations for 223,452 unique individuals.

  • The ICU module is for for intensive care unit admissions and contains 94,458 ICU stays for 65,366 unique individuals

MIMIC-IV-ED (version 2.2):

  • The ED module contains tables related to emergency department (ED) visits from 2011 to 2019. There are 425,087 ED visits of which 203,016 led to hospital admissions.

MIMIC-IV-Note (version 2.2):

  • The Note module contains tables related to 331,794 deidentified discharge summaries from 145,915 patients admitted to the hospital and emergency department.

MIMIC-CXR (latest version 2.0) :

  • The CXR module contains tables related to 377,110 images corresponding to 227,835 radiographic studies in Digital Imaging and Communications in Medicine (DICOM) format with free text radiology reports made in the emergency department from 2011 to 2016

Other notable modules include the following:

MIMIC-IV-ECG

  • The ECG module contains approximately 800,000 diagnostic electrocardiograms from nearly 160,000 unique patients. These diagnostic ECGs use 12 leads, are 10 seconds in length and are sampled at 500 Hz.

MIMIC-IV-ECHO

  • The ECHO module contains 206,488 echocardiogram studies (including 179,928 transthoracic, 16,389 stress, and 10,171 transesophageal echocardiograms) from 91,372 unique patients between 2008 and 2022.

  • The MIMIC-IV-ECHO module contains structured echocardiographic measurements and DICOM files from echocardiography exams.

Methodology and Generation

Acquisition

Data across the MIMIC-IV family were sourced from Beth Israel Deaconess Medical Center's (BIDMC) systems, with each component drawn from their respective sources. For instance, MIMIC-IV Core drew from the hospital-wide EHR and ICU bedside systems, excluding patients under 18 at first visit or on an enhanced-protection list; MIMIC-IV-Note included only notes within one year of a hospital or ED encounter; MIMIC-IV-ED drew emergency department records in XML format; and MIMIC-CXR separately sourced chest radiograph studies via the local EHR and Radiology Information System (RIS), alongside their associated free-text reports.

Transformation

Raw data were converted into structured, analysis-ready formats while preserving the integrity of the original clinical record. MIMIC-IV was transformed via custom SQL into a schema organized into the Hosp and ICU modules, designed for backward compatibility with MIMIC-III, with tables exported as CSV files and no data cleaning applied so the dataset reflects real-world clinical data as recorded. Out-of-hospital deaths were linked to Massachusetts state vital records using a custom workflow combining exact and fuzzy matching (name, date of birth, social security number), prioritizing sensitivity over specificity. MIMIC-IV-ED's XML extracts were converted into a denormalized relational database to support analysis. MIMIC-CXR integrated three separately processed streams into a single unified dataset: EHR data, DICOM-format imaging, and extracted radiology reports (stripped of administrative/clinical metadata).

Deidentification

All datasets meet HIPAA Safe Harbor requirements, though each applies methods suited to its data type. Structured data across MIMIC-IV, MIMIC-IV-ED, and MIMIC-CXR had direct identifiers removed and replaced with randomly assigned IDs (subject_id, hadm_id, stay_id) that remain consistent across datasets to enable cross-linkage. Dates were shifted using patient-specific offsets to preserve within-patient chronological relationships. Free-text and unstructured data required additional handling: MIMIC-IV-Note and MIMIC-CXR's radiology reports were deidentified using a combination of rule-based methods, a purpose-built neural network, and manual review; MIMIC-IV-ED's free-text fields were scrubbed and replaced with placeholders; and MIMIC-CXR's DICOM imaging had PHI removed from both metadata and pixel data via a custom algorithm with manual validation. Finally, released datasets were exported in a character-based, comma-delimited format for distribution.

Derived tables

The MIMIC team provides and maintains code in the public mimic-code repository (http://github.com/MIT-lcp/mimic-code) to generate tables and common variables such as severity scores to make analysis easier.

Data Access

Access to MIMIC is provided via Physionet and restricted. For Brown University staff and students, access can be provided on OSCAR after meeting the following requirements. Researchers generally need to be credentialed, complete human subjects training via CITI courses and sign a data use agreement before obtaining the full dataset. For more detailed instructions, please refer to your Primary Investigator or Brown faculty.

Standardized Healthcare Vocabularies

Diagnoses and Procedures

  • ICD-9-CM diagnoses

  • ICD-9-PCS procedures

  • ICD-10-CM diagnoses

  • ICD-10-PCS procedures

  • HCPCS

Medications

  • National Drug Code (NDC)

Labs

  • Logical Observation Identifiers, Names and Codes(LOINC)

Imaging

  • DICOM

References

Resources

Articles

Last updated