# \donttest{
## use the simulated rectal cancer cohort
data("sire", package = "popEpi")
ab <- c(0,45,55,65,70,Inf)
sire$agegr <- cut(sire$dg_age, breaks = ab, right = FALSE)
BL <- list(fot= seq(0,10,1/12))
pm <- data.frame(popEpi::popmort)
x <- lexpand(sire, breaks=BL, pophaz=pm,
birth = bi_date,
entry = dg_date, exit = ex_date,
status = status %in% 1:2)
rpm <- relpois(x, formula = lex.Xst %in% 1:2 ~ -1+ FOT + agegr,
fot.breaks=c(0,0.25,0.5,1:8,10))
pmc <- rpcurve(rpm)
## compare with non-parametric estimates
names(pm) <- c("sex", "per", "age", "haz")
x$agegr <- cut(x$dg_age, c(0,45,55,65,75,Inf), right = FALSE)
st <- survtab(fot ~ adjust(agegr), data = x, weights = "internal",
pophaz = pm)
plot(st, y = "r.e2.as")
lines(y = pmc$est, x = pmc$Tstop, col="red")
# }
Run the code above in your browser using DataLab