|
| 1 | +--- |
| 2 | +title: "vital signs" |
| 3 | +linktitle: "vital signs" |
| 4 | +weight: 3 |
| 5 | +date: 2023-09-18 |
| 6 | +description: > |
| 7 | + Numeric vital sign concept mappins within respiratory, routine, general, and hemodynamic categories. |
| 8 | +--- |
| 9 | + |
| 10 | +Vital signs data in MIMIC-Northwestern is split between two tables in the ICU module, the d_items and chartevents. The d_items table is the definition table for all concepts recorded in the events tables in the ICU module, including the chartevents table, and the chartevents table contains all the charted data available for a patient during their ICU stay, including vital signs readings. |
| 11 | + |
| 12 | +Data from the d_items table was used for mapping vital signs values to LOINC, including the label and the unit of measurement. Concepts in the d_items table are stratified into various categories. Most vital signs are under the category 'Routine Vital Signs'. However, some vital signs, such as respiratory rate and O2 saturation, are listed under the category 'Respiratory'. Similar to lab results, the online tool SearchLOINC was used to map vital signs to LOINC v2.72. |
| 13 | + |
| 14 | +# Table columns |
| 15 | + |
| 16 | +| Name | Postgres data type | |
| 17 | +| --------------- | ------------------- | |
| 18 | +| `itemid` | INTEGER | |
| 19 | +| `label` | VARCHAR(200) | |
| 20 | +| `abbreviation` | VARCHAR(100) | |
| 21 | +| `category` | VARCHAR(100) | |
| 22 | +| `unitname` | VARCHAR(100) | |
| 23 | +| `loinc` | VARCHAR(50) | |
| 24 | +| `loinc_label` | VARCHAR(200) | |
| 25 | +| `omop_id` | VARCHAR(50) | |
| 26 | +| `count` | INTEGER | |
| 27 | +| `author_id` | VARCHAR(50) | |
| 28 | +| `reviewer_id` | VARCHAR(50) | |
| 29 | + |
| 30 | +## Detailed description |
| 31 | + |
| 32 | +### `itemid` |
| 33 | +A unique identifier for a single measurement type in the database. |
| 34 | +### `label` |
| 35 | +The label column describes the concept which is represented by the itemid. This refers to an inhouse concept used from BIDMC or Northwestern. |
| 36 | +### `abbreviation` |
| 37 | +The abbreviation column lists a common abbreviation for the label. This column is harmonized to MIMIC's concepts. |
| 38 | +### `category` |
| 39 | +category provides some information on the type of data the itemid corresponds to. This column is harmonized to MIMIC's concepts. |
| 40 | +### `unitname` |
| 41 | +unitname specifies the unit of measurement used for the itemid. This column is harmonized to MIMIC's concepts. |
| 42 | +### `loinc` |
| 43 | +loinc contains the LOINC code associated with the given itemid. The Logical Observation Identifiers Names and Codes (LOINC) is an ontology which originally specified laboratory measurements but has since expanded to cover a wide range of clinically relevant concepts. |
| 44 | +### `loinc_label` |
| 45 | +loinc_label contains the LOINC Long Common Name for the loinc code. |
| 46 | +### `omop_id` |
| 47 | +omop_id is a unique identifier for each Concept across all domains in the Observational Medical Outcomes Partnership (OMOP) common data model. |
| 48 | +### `count` |
| 49 | +The count of chartevents instances for a given itemid. |
| 50 | +### `author_id` |
| 51 | +ORCIDs that Identifies the persons or groups responsible for asserting the mappings. |
| 52 | +### `reviewer_id` |
| 53 | +ORCIDs that Identifies the persons or groups that reviewed and confirmed the mapping. |
| 54 | + |
| 55 | +## Harmonization process |
| 56 | + |
| 57 | +Northwestern concepts were mapped to match MIMIC concepts. |
| 58 | +To enable the harmonization to mimic's data structure, mimic concept were initially mapped to loinc codes. There were two concepts in MIMIC under the “Routine Vital Signs” category that we were unable to map because no suitable LOINC code exists for these concepts. Fortunately, these concepts account for only 0.02% of total vital signs events in MIMIC. |
| 59 | + |
| 60 | +| Vital sign name | Mapping issue | Comments | |
| 61 | +|-----------------|---------------|----------| |
| 62 | +| Bladder Pressure | No LOINC code available | Bladder pressure is a technique used to monitor intra-abdominal pressure. | |
| 63 | +| Doppler BP | No LOINC code available | Doppler is sometimes used in the process of measuring systolic blood pressure if the pulse is faint. | |
| 64 | + |
| 65 | +Distribution of mapped concepts: |
| 66 | + |
| 67 | +| | Number of concepts (N=42) | % of total Concepts | % of events (N=44,317,869) | |
| 68 | +|-------------------|---------------------------|---------------------|---------------------------| |
| 69 | +| Exact match | 40 | 95.20% | 99.98% | |
| 70 | +| Unable to map | 2 | 4.80% | 0.02% | |
| 71 | +| - No suitable LOINC code available | 2 | 4.80% | 0.02% | |
0 commit comments