Use tidyverse (ggpot2, dplyr) to explore the MIMIC-III data introduced in homework 1.

Q1

Demographic information of the patients admitted into hospital is available in ADMISSION.csv. See https://mimic.physionet.org/mimictables/admissions/ for details of each field in this file. Summarize following variables using appropriate graphs:

Note it is possible that one patient (uniquely identified by the SUBJECT_ID) is admitted into hospital multiple times. When summarizing some demographic information, it makes sense to summarize based on only unique patients.

Q2

Link the data in ADMISSION.csv and PATIENTS.csv (https://mimic.physionet.org/mimictables/patients/) and summarize following variables using appropriate graphs:

Q3

ICUSTAYS.csv (https://mimic.physionet.org/mimictables/icustays/) contains data about Intensive Care Units (ICU) stays. Summarize following variables using appropriate graphs:

Q4

CHARTEVENTS.csv (https://mimic.physionet.org/mimictables/chartevents/) contains all the charted data available for a patient. During their ICU stay, the primary repository of a patient’s information is their electronic chart. The ITEMID variable indicates a single measurement type in the database. The VALUE variable is the value measured for ITEMID.

D_ITEMS.csv (https://mimic.physionet.org/mimictables/d_items/) is the dictionary for the ITEMID in CHARTEVENTS.csv. Find potential values of ITEMID that correspond to systolic blood pressure, i.e., LABEL contains the string systolic.

Compile a tibble that contains the first ICU stay of unique patients, with the patient’s demographic information, the first systolic blood pressure measurement during ICU stay, and whether the patient died within 30 days of hospitcal admission.