zzj0402 / hack-aotearoa

Sample code for Hack Aotearoa 2023

Home Page:http://hackaotearoa.co.nz/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hack Aotearoa 2023 (March 17th to March 19th 2023)

This repository contains resources for Hack Aotearoa 2023

Contents

  1. Getting started
  2. Documentation
  3. Databases on BigQuery
  4. Analysing data with Google Colab
  5. Python notebooks that we prepared earlier
  6. An example in R
  7. Sample projects
  8. Miscellaneous resources!

1. Getting started

The datasets are hosted on Google Cloud, which requires a Gmail account to manage permissions.

  1. Create a Gmail account, if you don't already have one. It will be used to manage your access to the resources.
  2. Complete the form at: https://uoaevents.eventsair.com/hack-aotearoa-2023/dua2023/Site/Register.

2. Documentation

3. Databases on BigQuery

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.

  1. Open BigQuery.
  2. At the top of the console, select hack-aotearoa as the project. This indicates the account used for billing.
  1. You should be able preview the data available on these projects using the graphical interface.

  2. 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` 

4. Analysing data with Google Colab

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:

5. Python notebooks that we prepared earlier

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. Open In Colab

Notebook 2 (eICU): Severity of illness. Open In Colab

Notebook 3 (eICU): Summary statistics. Open In Colab

Notebook 4 (eICU): Timeseries. Open In Colab

Notebook 5 (eICU): Mortality prediction. Open In Colab

Notebook 6 (eICU): Acute kidney injury. Open In Colab

Notebook 7 (eICU): Project work. Open In Colab

Notebook 8 (MIMIC): MIMIC-III tutorial. Open In Colab

Notebook 9 (MIMIC): Weekend effect on mortality. Open In Colab

Notebook 10 (MIMIC): Mortality in septic patients. Open In Colab

6. An example in R

If you prefer working in R, then you can connect to Google Cloud from your code in a similar way:

7. Sample projects

These papers and repositories may be helpful for reference. They are 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
  1. The association between mortality among patients admitted to the intensive care unit on a weekend compared to a weekday
  1. Predicting in-hospital mortality of intensive care patients using decision trees.
  1. Comparison of methods for identifying patients with sepsis.
  1. Evaluating the reproducibility of mortality prediction studies that use the MIMIC-III database.
  1. Optimising treatment of sepsis with reinforcement learning
  1. Association of hypokalemia with an increased risk for medically treated arrhythmia

8. Resources

About

Sample code for Hack Aotearoa 2023

http://hackaotearoa.co.nz/

License:MIT License


Languages

Language:Jupyter Notebook 99.7%Language:Python 0.3%