vaScore {vaRiskScore}R Documentation

VA CVD Risk Score (2021)

Description

Calculates the cardiovascular (CVD) risk score for women military service members and veterans.

Usage

vaScore(
  age = 50,
  race = 1,
  SBPTrt = 1,
  SBP = 150,
  TC = 100,
  HDL = 50,
  DM = 1,
  Smoke = 1,
  Depression = 1,
  verbose = TRUE
)

Arguments

age

Patient age (years: 1-110)

race

Patient race (1 = White, 2 = African American, 3 = Hispanic)

SBPTrt

Patient is on a blood pressure medication (1 = Yes, 0 = No)

SBP

Systolic blood pressure (mmHg: 0-300)

TC

Total cholesterol (mg/dL: 0-400)

HDL

HDL cholesterol (mg/dL: 0-200)

DM

Diabetes (1 = Yes, 0 = No)

Smoke

Current smoker (1 = Yes, 0 = No)

Depression

Major Depression (1 = Yes, 0 = No)

verbose

logical: should input (patient profile) be printed.

Value

Estimated 10-year CVD Risk for VA women military service members and veterans.

Author(s)

Xiaofei Chen; Haekyung Jeon‐Slaughter

References

Jeon‐Slaughter, H., Chen, X., Tsai, S., Ramanan, B., & Ebrahimi, R. (2021). Developing an internally validated veterans affairs women cardiovascular disease risk score using Veterans Affairs National Electronic Health Records. Journal of the American Heart Association, 10(5), e019217.

Examples

library(vaRiskScore)
vaScore(age = 50,
        race = 1,
        SBPTrt = 1,
        SBP = 150,
        TC = 100,
        HDL = 50,
        DM = 1,
        Smoke = 1,
        Depression = 1,
        verbose = TRUE)

[Package vaRiskScore version 1.1.0 Index]