Plot survival curves
Usage
plotSurvivalCurves(
surv,
mark = TRUE,
interval = FALSE,
pvalue = NULL,
title = "Survival analysis",
scale = NULL,
auto = TRUE
)
Arguments
- surv
Survival object
- mark
Boolean: mark times?
- interval
Boolean: show interval ranges?
- pvalue
Numeric: p-value of the survival curves
- title
Character: plot title
- scale
Character: time scale (default is
days
)- auto
Boolean: return the plot automatically prepared (
TRUE
) or only the bare minimum (FALSE
)?
See also
Other functions to analyse survival:
assignValuePerSubject()
,
getAttributesTime()
,
labelBasedOnCutoff()
,
optimalSurvivalCutoff()
,
plotSurvivalPvaluesByCutoff()
,
processSurvTerms()
,
survdiffTerms()
,
survfit.survTerms()
,
testSurvival()
Examples
require("survival")
fit <- survfit(Surv(time, status) ~ x, data = aml)
plotSurvivalCurves(fit)