Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 1.3 KB

File metadata and controls

25 lines (22 loc) · 1.3 KB

Connecting to MIMIC using Google BigQuery

Step 1: Request access to physionet databases

  • Create a physionet account and link it with the google email address you will use to access BigQuery
  • (Profile -> Cloud -> Google Cloud Platform). If necessary, add your google email address under Emails. Cloud settings
  • Navigate to your data source (e.g., MIMIC-III demo)
  • Scroll down to Files, click Request access using Google BigQuery. MIMIC-III demo
  • For additional details see the following guide

Step 2: Set up BigQuery and add Physionet-Data

  • Set up a BigQuery sandbox project (billing information required and it may post a temporary charge for verification. It will not be linked with your project)
  • Under Explorer, click +Add Data
  • Scroll down to Star a project by name, enter physionet-data
  • physionet-data should appear in the explorer menu, containing the datasets requested using step 1.
  • For additional details see the following guide

Step 3: Test

  • Create a new query and paste in the following:
    SELECT *
    FROM `physionet-data.mimiciv_3_1_hosp.patients` 
    limit 10;