TIMI: TIMI risk scores for nSTEMI, STEMI and ACS

Description Usage Arguments Value Author(s) References Examples

View source: R/inteRn.R

Description

Estimates mortality for patients with unstable angina, non-ST elevation MI, ST elevation MI or acute coronary syndrome

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
TIMI(
  age = 65,
  Number.of.CAD.risk.factors = 4, 
  known.CAD = "yes",
  aspirin.in.last.7.days = "yes",
  number.of.angina.episodes.in.24.hours = 2,
  ekg.st.changes.over.0.5 = "yes", 
  positive.cardiac.markers = "yes", 
  HR = 100, 
  sbp = 120, 
  which.timi = "nSTEMI", 
  DHA = TRUE, 
  JVD = TRUE, 
  Pulmonary.Edema = TRUE, 
  weight.kg = 67, 
  Anterior.STE = TRUE,
  LBBB = TRUE, 
  time.to.treat = 4
)

Arguments

age

Numerical value corresponding to the age of the patient in years.

Number.of.CAD.risk.factors

Integer value corresponding to the number of risk factors for coronary artery disease.

known.CAD

String value. 'yes' if the patient is known to have coronary artery disease, 'no' otherwise. Use lower case.

aspirin.in.last.7.days

String value. 'yes' if the patient is known to have aspirin in the last 7 days, 'no' otherwise. Use lower case.

number.of.angina.episodes.in.24.hours

Integer value corresponding to the number of episodes of angina in the last 24 hours.

ekg.st.changes.over.0.5

String value. 'yes' if the patient had ST segment changes with an amplitude larger than 0.5 'no' otherwise. Use lower case.

positive.cardiac.markers

String value. 'yes' if the patient had positive cardiac markers (troponins) 'no' otherwise. Use lower case.

HR

Integer value corresponding to the patient's heart rate (beats per minute).

sbp

Integer value corresponding to the patient's systolic blood pressure.

which.timi

String value corresponding to the TIMI score you want to calculate. It can be 'nSTEMI' for unstable angina or non-ST segment elevation MI, 'STEMI' for ST segment elevation MI or 'ACS' for acute coronary syndrome.

DHA

Boolean value. TRUE if the patient has diabetes or hypertension or angina.

JVD

Boolean value. TRUE if the patient has jugular venous distension.

Pulmonary.Edema

Boolean value. TRUE if the patient has pulmonary edema.

weight.kg

Numerical value corresponding to the patient's weight in kg.

Anterior.STE

Boolean value. TRUE if the patient has ST elevation of the anterior leads in the EKG.

LBBB

Boolean value. TRUE if the patient has a new onset Left Bundle Branch Block in the EKG.

time.to.treat

Numerical value corresponding to time from the MI episode began to time of initiating treatment.

Value

Returns a list with the TIMI score calculated for this patient and a short string with a small interpretation of the score when possible.

Author(s)

Carlos C Vera Recio

References

-Antman, E M et al. “The TIMI risk score for unstable angina/non-ST elevation MI: A method for prognostication and therapeutic decision making.” JAMA vol. 284,7 (2000): 835-42. doi:10.1001/jama.284.7.835 -Morrow, D A et al. “TIMI risk score for ST-elevation myocardial infarction: A convenient, bedside, clinical score for risk assessment at presentation: An intravenous nPA for treatment of infarcting myocardium early II trial substudy.” Circulation vol. 102,17 (2000): 2031-7. -Wiviott, Stephen D et al. “Application of the Thrombolysis in Myocardial Infarction risk index in non-ST-segment elevation myocardial infarction: evaluation of patients in the National Registry of Myocardial Infarction.” Journal of the American College of Cardiology vol. 47,8 (2006): 1553-8. doi:10.1016/j.jacc.2005.11.075

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# For unstable angina or nSTEMI
TIMI(
  age = 65,
  Number.of.CAD.risk.factors = 4, 
  known.CAD = "yes",
  aspirin.in.last.7.days = "yes",
  number.of.angina.episodes.in.24.hours = 2,
  ekg.st.changes.over.0.5 = "yes", 
  positive.cardiac.markers = "yes", 
  HR = 100, 
  sbp = 120, 
  which.timi = "nSTEMI", 
  DHA = TRUE, 
  JVD = TRUE, 
  Pulmonary.Edema = TRUE, 
  weight.kg = 67, 
  Anterior.STE = TRUE,
  LBBB = TRUE, 
  time.to.treat = 4
)

# for STEMI
TIMI(
  age = 65,
  Number.of.CAD.risk.factors = 4, 
  known.CAD = "yes",
  aspirin.in.last.7.days = "yes",
  number.of.angina.episodes.in.24.hours = 2,
  ekg.st.changes.over.0.5 = "yes", 
  positive.cardiac.markers = "yes", 
  HR = 100, 
  sbp = 120, 
  which.timi = "STEMI", 
  DHA = TRUE, 
  JVD = TRUE, 
  Pulmonary.Edema = TRUE, 
  weight.kg = 67, 
  Anterior.STE = TRUE,
  LBBB = TRUE, 
  time.to.treat = 4
)

# for ACS
TIMI(
  age = 65,
  Number.of.CAD.risk.factors = 4, 
  known.CAD = "yes",
  aspirin.in.last.7.days = "yes",
  number.of.angina.episodes.in.24.hours = 2,
  ekg.st.changes.over.0.5 = "yes", 
  positive.cardiac.markers = "yes", 
  HR = 100, 
  sbp = 120, 
  which.timi = "ACS", 
  DHA = TRUE, 
  JVD = TRUE, 
  Pulmonary.Edema = TRUE, 
  weight.kg = 67, 
  Anterior.STE = TRUE,
  LBBB = TRUE, 
  time.to.treat = 4
)

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