Bayesian models for environmental health. This code is used for the paper Name, Y., Parks, R.M. et al. (202X). Title with hyperlink. Journal Name.
Aims:
- Aim 1. File
src/bayesian_envhealth_models/models.py
.
.
├── .gitignore
├── .pre-commit-config.yaml
├── README.md
├── data
├── src/bayesian_envhealth_models
│ └── models.py
├── output
├── scripts
│ └── model_run.py
└── reports
Folder | File | Description |
---|---|---|
src/bayesian_envhealth_models |
models.py |
numpyro models |
scripts |
model_run.py |
Script to run the numpyro model |
- Create a fresh
conda
environmentmamba create -n envhealth-env hatch
and install the required packagespip install -e ."[dev]"
. - Edit the config file
scripts/conf/model_config.yaml
to specify the data and output directories. python scripts/model_run.py
Data used in the analysis are controlled by the XX who do not have permission to release data to third parties. Individual mortality data can be requested through XX (e.g. the US CDC). If you would like a file containing simulated data that allow you to test the code, please contact robbie.parks@columbia.edu.
Adapted from: