mantelCoxHR | R Documentation |
Estimate the hazard ratio and compute a confidence interval for it via a special application of the Mantel-Haenszel procedure. A separate 2 x 2 table is constructed for each event time. The underlying assumption is that the hazard ratio is constant over the follow-up period.
mantelCoxHR(time, event, group, conf.level = 0.95)
time |
Event times, censored or observed. |
event |
Censoring indicator, 1 for event, 0 for censored. |
group |
Factor with two levels, e.g. treatment group. |
conf.level |
Significance level for confidence interval for hazard ratio. |
mantelCox.hr |
Hazard ratio estimate. |
ci.hr |
Wald confidence interval at the level specified by |
p.val.logrank |
|
coxph.hr |
Hazard ratio estimated via Cox-regression. |
In general the Mantel-Cox estimate and the hazard ratio estimate received via Cox-regression do not coincide.
Kaspar Rufibach
kaspar.rufibach@gmail.com
Kirkwood, B.R. and Sterne, J.A.C. (2003). Essential Medical Statistics. Blackwell Science. See p. 283 ff.
## load Acute Myelogenous Leukemia survival data
data("leukemia", package = "survival")
mantelCoxHR(time = leukemia[, 1],
event = leukemia[, 2],
group = as.factor(leukemia[, 3]))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.