This repository contains resources for the BIDMC Datathon 2020.
- Getting started
- Documentation
- Databases on BigQuery
- Analysing data with Google Colab
- Notebooks that we prepared earlier
- 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
bidmc-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
andbidmc-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.
BIDMC Q1: Data extraction for the English vs. Non-English Speaker project (MIMIC/R)
BIDMC Q1: Exploratory analysis in English vs. Non-English Speakers (MIMIC/Python)
BIDMC Q1: Exploratory analysis in English vs. Non-English Speakers (MIMIC/R)
Decision trees for mortality prediction (eICU)
Renal replacement therapy (eICU)
Exploring the patient table (eICU):
Timeseries for a single patient (eICU)
Weekend effect on mortality (MIMIC)
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/
To be continued...