This repository contains resources for the Society of Critical Care Medicine (SCCM) Datathon 2020.
- Getting started
- Documentation
- Databases on BigQuery
- Analysing data with Google Colab
- Python notebooks that we prepared earlier
- An example in R
- Sample projects
The datasets are hosted on Google Cloud, which requires a Gmail account to manage permissions.
- Create a Gmail account, if you don't already have one. It will be used to manage your access to the resources.
- Give your gmail address to the session hosts.
We will be working with two critical care datasets during the event: MIMIC-III and the eICU Collaborative Research Database.
- MIMIC-III Clinical Database: https://mimic.physionet.org/
- eICU Collaborative Research Database: https://eicu-crd.mit.edu/
BigQuery is a database system that makes it easy to explore data with Structured Query Language ("SQL"). There are several datasets on BigQuery available for you to explore, including eicu_crd
(the eICU Collaborative Research Database) and mimiciii_clinical
(the MIMIC-III Clinical Database).
You will also find "derived" databases, which include tables derived from the original data using the code in the eICU and MIMIC code repositories. These are helpful if you are looking for something like a sepsis cohort or first day vital signs.
-
At the top of the console, select
sccm-datathon
as the project. This indicates the account used for billing. -
"Pin" a project to the resources menu to view available datasets. In the Resources menu on the left, click "Add data", "Pin a project", then add the following project names:
physionet-data
andsccm-datathon
. -
You should be able preview the data available on these projects using the graphical interface.
-
Now try running a query. For example, try counting the number of rows in the demo eICU patient table:
SELECT count(*) FROM `physionet-data.eicu_crd_demo.patient`
Python is an increasingly popular programming language for analysing data. We will explore the data using Python notebooks, which allow code and text to be combined into executable documents. First, try opening a blank document using the link below:
Several tutorials are provided below. Requirements for these notebooks are: (1) you have a Gmail account and (2) your Gmail address has been added to the appropriate Google Group by the workshop hosts.
Notebook 1 (eICU): Exploring the patient table.
Notebook 2 (eICU): Severity of illness.
Notebook 3 (eICU): Summary statistics.
Notebook 4 (eICU): Timeseries.
Notebook 5 (eICU): Mortality prediction.
Notebook 6 (eICU): Acute kidney injury.
Notebook 7 (eICU): Project work.
Notebook 8 (MIMIC): Weekend effect on mortality.
If you prefer working in R, then you can connect to Google Cloud from your code in a similar way:
These papers and repositories may be helpful for reference. They are definitely not perfect! Code may be untidy, poorly documented, buggy, outdated etc. Think about how they can be improved, adapted, etc. For example, you could:
- replicate the study on a different dataset (e.g. MIMIC vs eICU)
- improve the methodology
- The association between mortality among patients admitted to the intensive care unit on a weekend compared to a weekday
- Python Notebook: https://github.com/MIT-LCP/bhi-bsn-challenge/blob/master/challenge-demo.ipynb
- R Markdown Notebook: https://github.com/MIT-LCP/bhi-bsn-challenge/blob/master/rmarkdown_example_notebook.Rmd
- More reading: https://physionet.org/content/bhi-2018-challenge/1.0/
TBC...