CHADSVASc: Calculate the CHAD-VASC score risk of stroke on patients with...

Description Usage Arguments Value Author(s) References Examples

View source: R/inteRn.R

Description

Aids physicians calculate the risk of stroke in patients with atrial fibrillation.

Usage

1
2
3
4
5
6
7
8
9
CHADSVASc(
  CHF = "yes", 
  HTN = "yes", 
  Age = 75, 
  DM = "yes", 
  Stroke = "yes",
  Vascular = "yes", 
  sex = "female"
)

Arguments

CHF

Accepts a string value. The value should be 'yes' if the patient has congestive heart failure or 'no' if the patient does not have congestive heart failure. Please use lower case.

HTN

Accepts a string value. The value should be 'yes' if the patient has hypertension or 'no' if the patient does not have hypertension. Please use lower case.

Age

Accepts a numerical or integer value. The value should be between 1-120, but technically, any value is accepted.

DM

Accepts a string value. The value should be 'yes' if the patient has diabetes or 'no' if the patient does not have diabetes. Please use lower case.

Stroke

Accepts a string value. The value should be 'yes' if the patient has had a stroke in the past or 'no' if the patient has not had a stroke in the past. Please use lower case.

Vascular

Accepts a string value. The value should be 'yes' if the patient has history of vascular disease or 'no' if the patient does not have vascular disease. Some examples of of vascular disease include angina, myocardial infarction, peripheral artery disease or coronary artery disease. Please use lower case.

sex

Accepts a string value. The value should be 'female' if the patient was born a member of the female sex and 'male' if the patient was born of the male sex. Please use lower case.

Value

The output is an integer value from 0-9 that corresponds to the CHAD-VASC score. Please follow this link to understand the risk asociated with the CHAD-VASC score.

https://www.mdcalc.com/cha2ds2-vasc-score-atrial-fibrillation-stroke-risk#evidence

Author(s)

Carlos C Vera Recio

References

Ntaios, George et al. “CHADS₂, CHA₂S₂DS₂-VASc, and long-term stroke outcome in patients without atrial fibrillation.” Neurology vol. 80,11 (2013): 1009-17. doi:10.1212/WNL.0b013e318287281b

Examples

1
2
3
4
5
6
7
8
9
CHADSVASc(
  CHF = "yes", 
  HTN = "yes", 
  Age = 75, 
  DM = "yes", 
  Stroke = "yes",
  Vascular = "yes", 
  sex = "female"
)

CCVR/inteRn documentation built on Dec. 17, 2021, 12:51 p.m.