https://github.com/dmarrazzo/rust-framingham-cvd-risk-score
Rust implementation of the Framingham CVD risk score
https://github.com/dmarrazzo/rust-framingham-cvd-risk-score
Last synced: 3 months ago
JSON representation
Rust implementation of the Framingham CVD risk score
- Host: GitHub
- URL: https://github.com/dmarrazzo/rust-framingham-cvd-risk-score
- Owner: dmarrazzo
- Created: 2022-01-19T13:29:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-19T13:51:56.000Z (over 3 years ago)
- Last Synced: 2025-01-22T20:51:19.007Z (5 months ago)
- Language: Rust
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
An implementation of the [Framingham CVD risk score](https://en.wikipedia.org/wiki/Framingham_Risk_Score) in [Rust Language](https://www.rust-lang.org/)
Inspired by the [DMN Implementation](https://github.com/tarilabs/dmn-framingham-cvd-risk-score)
# Disclaimer
**Not medical advice. Always seek professional medical advice.**
The content on this repository is provided for informational purposes only and is not intended as a medical advice, or a substitute for the medical advice of a doctor/physician.The content on this repository is intended only as a methodological exercise to translate a scientific paper publication into a standardised executable DMN model.
Model features and labels are modeled as expressed with consideration from the original paper; that is for inputs:
```
age, sex, high blood pressure, smoking, dyslipidemia, and diabetes
```
and for outputs:
```
Framingham score, CVD Risk [%], Heart age/vascular age [y]
```# References
- [General Cardiovascular Risk Profile for Use in Primary Care, The Framingham Heart Study](https://www.ahajournals.org/doi/pdf/10.1161/CIRCULATIONAHA.107.699579)
- [Healthcare Analytics Made Simple, by Vikas Kumar, Packt Publishing, July 2018, ISBN: 9781787286702](https://www.packtpub.com/product/healthcare-analytics-made-simple/9781787286702)
- [BPM+Health](https://www.bpm-plus.org)