Create simple life table
# S3 method for matrix
lifetable(x, strata = list(), breaks = c(),
weights=NULL, confint = FALSE, ...) # S3 method for formula
lifetable(x, data=parent.frame(), breaks = c(),
weights=NULL, confint = FALSE, ...)
time formula (Surv) or matrix/data.frame with columns time,status or entry,exit,status
strata
time intervals
weights variable
if TRUE 95% confidence limits are calculated
additional arguments to lower level functions
data.frame
Klaus K. Holst
library(timereg)
data(TRACE)
d <- with(TRACE,lifetable(Surv(time,status==9)~sex+vf,breaks=c(0,0.2,0.5,8.5)))
summary(glm(events ~ offset(log(atrisk))+factor(int.end)*vf + sex*vf,
data=d,poisson))
Run the code above in your browser using DataLab