Framingham Parameter Description
This file contains a Python module for the Framingham model, which is used for cardiovascular risk assessment. It provides a method to describe the model.
1"""
2This file contains a Python module for the Framingham model, which is used for cardiovascular risk assessment. It provides a method to describe the model.
3"""
4from biomodel.models import Framingham
5
6if __name__ == '__main__':
7 model = Framingham()
8 model.describe()
