plotSurvivalCurves {psichomics}R Documentation

Plot survival curves

Description

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? TRUE by default

interval

Boolean: show interval ranges? FALSE by default

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)? TRUE by default

Value

Plot of survival curves

Examples

require("survival")
fit <- survfit(Surv(time, status) ~ x, data = aml)
plotSurvivalCurves(fit)

[Package psichomics version 1.9.1 Index]