QTc: Correct the QT interval

Description Usage Arguments Value Author(s) References Examples

View source: R/inteRn.R

Description

Use the Bazett, Fridericia, Framingham, or Hodges formulas to correct the QT interval for heart rate extremes.

Usage

1
2
3
4
5
6
QTc(
  QT.length = 10,
  HR = 60, 
  paper.speed = 25,
  units = "small box"
)

Arguments

QT.length

Integer or numerical value that corresponds to the length of the QT interval in an EKG.

HR

Integer or numerical value that corresponds to the patient's heart rate in beats per minute.

paper.speed

Integer or numerical value that corresponds to the speed of EKG paper (default set to 25).

units

String value that corresponds to the unit's used to measure the EKG paper. This function accepts one of two values. Please input "small box" if the QT length is measured using the small boxes in the EKG paper; Please input "msec" if the QT interval is measured in miliseconds.

Value

Returns a numerical value that corresponds to the corrected QT interval.

Author(s)

Carlos C Vera Recio

References

-Bazett HC. An analysis of the time-relations of electrocardiograms. Heart 1920; (7): 353–37. -Sagie, A et al. “An improved method for adjusting the QT interval for heart rate (the Framingham Heart Study).” The American journal of cardiology vol. 70,7 (1992): 797-801. doi:10.1016/0002-9149(92)90562-d -Hodges, M. "Bazett's QT correction reviewed: evidence that a linear QT correction for heart rate is better." J Am Coll Cardiol 1 (1983): 694. -Fridericia, L S. “The duration of systole in an electrocardiogram in normal humans and in patients with heart disease. 1920.” Annals of noninvasive electrocardiology : the official journal of the International Society for Holter and Noninvasive Electrocardiology, Inc vol. 8,4 (2003): 343-51.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# QT interval measured using the boxes in the EKG
QTc(
  QT.length = 10,
  HR = 60, 
  paper.speed = 25,
  units = "small box"
)

# QT interval measured using tmiliseconds
QTc(
  QT.length = 10,
  HR = 60, 
  paper.speed = 25,
  units = "msec"
)

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