Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# change path | |
cd ~\Downloads\mimic-iv-ed\buildmimic\postgres | |
# create schemas and tables | |
psql -U postgres -d mimiciv -f .\create.sql | |
psql -U postgres -d mimiciv -v mimic_data_dir='C:\Users\n10599070\Downloads\mimic-iv-ed-2.2\ed' -v ON_ERROR_STOP=1 -f load_gz.sql | |
psql -U postgres -d mimiciv -f .\index.sql | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.when( | |
$.getJSON('https://cdn.jsdelivr.net/npm/emoji-flags@1.3.0/data.json'), | |
$.getJSON('vaccinations.json') | |
).done(function (res0, res1) { | |
var flags = res0[0]; | |
var data = res1[0]; | |
var years = []; | |
} | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import inspect | |
import os | |
import sys | |
current_dir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))) | |
parent_dir = os.path.dirname(current_dir) | |
sys.path.insert(0, parent_dir) | |
import my_own_package |