A gentle introduction to coding with CLIF (Common Longitudinal ICU data Format) datasets.
🌐 Live site: https://common-longitudinal-icu-data-format.github.io/CLIF-101/
- Loading Data - Use clifpy to efficiently load and explore CLIF tables
- Validation - Quality control against CLIF schemas and mCIDE vocabularies
- Analysis Patterns - Common workflows for ICU research
- Project Template - Structure your work for federated collaboration
- Best Practices - Tips and gotchas from the CLIF community
# Install clifpy
pip install clifpy
# Load your CLIF data
from clifpy import ClifOrchestrator
clif = ClifOrchestrator(data_dir="path/to/clif/data")
clif.load_tables(["patient", "hospitalization", "vitals", "labs"])To run the site locally:
# Install Jekyll
gem install bundler jekyll
# Serve locally
bundle exec jekyll serve
# Visit http://localhost:4000/CLIF-101/Found an issue or want to add content? PRs welcome!
- Fork the repo
- Create a branch (
git checkout -b add-new-section) - Make your changes
- Submit a PR
MIT License - see LICENSE for details.
Part of the CLIF Consortium