|-hospital
| |-zip.rds
| |-zip2.rds
| |-SA_COPD2.Rmd
| |-review.R
| |-SA_MI-New.Rmd
| |-SA_CHF2.Rmd
| |-SA_LungCancer2.Rmd
| |-SA_LungCancer-New.Rmd
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 pandas as pd | |
from huggingface_hub import HfApi | |
import datetime | |
import json | |
df = pd.read_csv('../../data/llm_leaderboard.csv', index_col=1, header=1) | |
def get_model_info(model_id): | |
api = HfApi() | |
try: |
Is the data you need already on FASSE? Check out the catalog here: https://nsaph.info/analytic.html#analytic-data
If it is not, see step 2.
The format of the form goes like this:
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 pandas as pd | |
import numpy as np | |
import json | |
from simplejson import loads | |
def get_outcomes(): | |
""" Get and return ICD codes """"" | |
f = open('icd_codes.json') | |
outcomes_ = json.load(f) |
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
{ | |
"aki": { | |
"icd10": [ | |
"N17" | |
], | |
"icd9": [ | |
"584" | |
] | |
}, | |
"all_kidney": { |
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
# Before running, activate env: | |
# export CONDA_ENVS_PATH=/nfs/projects/n/nsaph_common/conda/envs/ | |
# export CONDA_PKGS_PATH=/nfs/projects/n/nsaph_common/conda/pkgs/ | |
# source activate nsaph | |
## Code to ID hospitalizations | |
library(data.table) |
To get the data sample, we take first 25k rows and last 25k rows from the sample of 59mil rows in bash:
>> tail -n25000 /2016/mbsf_abcd_summary_res000017155_req008183_2016.dat \
> sample_mbsf_abcd_summary_res000017155_req008183_2016.dat
>> head -n25000 /2016/mbsf_abcd_summary_res000017155_req008183_2016.dat \
>> sample_mbsf_abcd_summary_res000017155_req008183_2016.dat
# word count:
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
from flask import Flask, redirect, url_for | |
from celery import Celery | |
from celery import Task | |
from subprocess import PIPE, Popen | |
import logging, os | |
logging.basicConfig(level=logging.INFO) | |
logger = logging.getLogger(__name__) | |
# Running locally: |
NewerOlder