compute_qtc: Compute Corrected QT

Description Usage Arguments Details Value Author(s) Examples

View source: R/derive_adeg_params.R

Description

Computes corrected QT using Bazett's, Fridericia's or Sagie's formula.

Usage

1
compute_qtc(qt, rr, method)

Arguments

qt

QT interval

A numeric vector is expected. It is expected that QT is measured in msec.

rr

RR interval

A numeric vector is expected. It is expected that RR is measured in msec.

method

Method used to QT correction

Permitted Values: "Bazett", "Fridericia", "Sagie"

Details

Depending on the chosen method one of the following formulae is used.

Bazett:

QT/√(RR/1000)

Fridericia:

QT/(RR/1000)^(1/3)

Sagie:

1000(QT/1000 + 0.154(1 - RR/1000))

Value

QT interval in msec

Author(s)

Stefan Bundfuss

Examples

1
2
3
4
5
compute_qtc(qt = 350, rr = 56.54, method = "Bazett")

compute_qtc(qt = 350, rr = 56.54, method = "Fridericia")

compute_qtc(qt = 350, rr = 56.54, method = "Sagie")

epijim/admiral documentation built on Feb. 13, 2022, 12:15 a.m.