Description Usage Arguments Details Value Examples
calc_card_10_one
returns 10 years cardivascular relative risk score for a single patient,
1 2 | calc_card_10_one(gender, age, bmi, hdl, cholesterol, sbp,
is_sbp_under_treatment, smoking_status, diabetes_status)
|
gender |
A character |
age |
A number |
bmi |
A number |
hdl |
A number |
cholesterol |
A number |
sbp |
A number |
is_sbp_under_treatment |
A boolean |
smoking_status |
A boolean |
diabetes_status |
A boolean |
This package uses the widely used framingham risk scoring algorithm used to determine an individual's chances of developing cardiovascular disease. This package gives an estimate of the probability that a person will develop cardiovascular disease within a specified amount of time (10 years)
framingham cardivascular 10 years risk score gender
and ...
1 2 3 4 5 6 7 8 9 10 | # call frisk function
calc_card_10_one(age=45, gender="F", cholesterol=89,
hdl=89, sbp=65, is_sbp_under_treatment=TRUE,
smoking_status=F, diabetes_status=T
)
call frisk simple scoring function using BMI
calc_card_10_one(age=45, gender="M", bmi= 173,
sbp=54, is_sbp_under_treatment=T,
smoking_status=F, diabetes_status=T
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.