Learn R Programming

relsurv (version 1.6-5)

survfit.rsadd: Compute a Predicited Survival Curve

Description

Computes a predicted survival curve based on the additive model estimated by rsadd function.

Usage

## S3 method for class 'rsadd':
survfit(formula, newdata, se.fit = TRUE, conf.int = 0.95, individual = FALSE, 
    conf.type = c("log", "log-log", "plain", "none"),...)

Arguments

formula
a rsadd object
newdata
a data frame with the same variable names as those that appear in the rsadd formula. The curve(s) produced will be representative of a cohort who's covariates correspond to the values in newdata.
se.fit
a logical value indicating whether standard errors should be computed. Default is TRUE.
conf.int
the level for a two-sided confidence interval on the survival curve(s). Default is 0.95.
individual
a logical value indicating whether the data frame represents different time epochs for only one individual (T), or whether multiple rows indicate multiple individuals (F, the default). If the former only one curve will be produced; if the latter there wil
conf.type
One of none, plain, log (the default), or log-log. The first option causes confidence intervals not to be generated. The second causes the standard intervals curve +- k *se(curve), where k is determined
...
Currently not implemented

Value

  • a survfit object; see the help on survfit.object for details. The survfit methods are used for print, plot, lines, and points.

Details

When predicting the survival curve, the ratetable values for future years will be equal to those of the last given year. The same ratetables will be used for fitting and predicting. To predict a relative survival curve, use rs.surv.rsadd.

References

Package: Pohar M., Stare J. (2006) "Relative survival analysis in R." Computer Methods and Programs in Biomedicine,81: 272--278. Relative survival: Pohar, M., Stare, J. (2007) "Making relative survival analysis relatively easy." Computers in biology and medicine, 37: 1741--1749.

See Also

survfit, survexp, rs.surv

Examples

Run this code
data(slopop)
data(rdata)
fit <- rsadd(Surv(time,cens)~sex+ratetable(age=age*365,sex=sex,
      year=year),ratetable=slopop,data=rdata,method="EM")
survfit.rsadd(fit,newdata=data.frame(sex=1,age=60,year=17000))

Run the code above in your browser using DataLab