Using a previously fit time-to-event model, this function plots a survival curve or CIF area plot. Instead of plotting value-specific curves, the probability of interest is represented as an area as a function of time, where the color changes according to the continuous variable.
plot_surv_area(time, status, variable, group=NULL,
data, model, cif=FALSE,
na.action=options()$na.action,
horizon=NULL, fixed_t=NULL, max_t=Inf,
start_color="blue", end_color="red", alpha=1,
discrete=FALSE, bins=ifelse(discrete, 10, 40),
sep_lines=FALSE, sep_color="black",
sep_size=0.1, sep_linetype="solid",
sep_alpha=alpha, xlab="Time",
ylab="Survival Probability", title=NULL,
subtitle=NULL, legend.title=variable,
legend.position="right",
gg_theme=ggplot2::theme_bw(),
facet_args=list(), label_digits=NULL,
transition_size=0.01, kaplan_meier=FALSE,
km_size=0.5, km_linetype="solid", km_alpha=1,
km_color="black", monotonic=TRUE, ...)
Returns a ggplot2
object.
A single character string specifying the time-to-event variable. Needs to be a valid column name of a numeric variable in data
.
A single character string specifying the status variable, indicating if a person has experienced an event or not. Needs to be a valid column name of a numeric or logical variable in data
.
A single character string specifying the continuous variable of interest, for which the survival curves should be estimated. This variable has to be contained in the data.frame
that is supplied to the data
argument.
An optional single character string specifying a factor variable in data
. When used, the plot is created conditional on this factor variable, meaning that a facetted plot is produced with one facet for each level of the factor variable. See curve_cont
for a detailed description of the estimation strategy. Set to NULL
(default) to use no grouping variable.
A data.frame
containing all required variables.
A model describing the time-to-event process (such as an coxph
model). Needs to include variable
as an independent variable. It also has to have an associated predictRisk
method. See ?predictRisk
for more details.
Whether to plot the cumulative incidence (CIF) instead of the survival probability. If multiple failure types are present, the survival probability cannot be estimated in an unbiased way. This function will always return CIF estimates in that case.
How missing values should be handled. Can be one of: na.fail
, na.omit
, na.pass
, na.exclude
or a user-defined custom function. Also accepts strings of the function names. See ?na.action
for more details. By default it uses the na.action which is set in the global options by the respective user.
A numeric vector containing a range of values of variable
for which the survival curves should be calculated or NULL
(default). If NULL
, the horizon is constructed as a sequence from the lowest to the highest value observed in variable
with 40 equally spaced steps.
A numeric vector containing points in time at which the survival probabilities should be calculated or NULL
(default). If NULL
, the survival probability is estimated at every point in time at which an event occurred.
A number indicating the latest survival time which is to be plotted.
The color used for the lowest value in horizon
. This and the end_color
argument can be used to specify custom continuous color scales used in the plot. For example, if a black and white plot is desired, the user can set start_color="white"
and end_color="black"
. See ?scale_color_gradient
for more information.
The color used for the highest value in horizon
. See argument start_color
.
The transparency level of the main plot.
Whether to plot the area as a single continuously shaded area (default) or as multiple discrete blocks. The blocks correspond to ranges (such as 5-10). This only really changes the style of the legend and decreases the default value of bins
to make the discrete blocks visable.
The number of bins the survival area should be divided into. In a nutshell, this function simply estimates a lot of covariate specific curves and colors the area between them on a graded scale. If many bins are used, this gives the appearance of a single shaded area, changing continuously. By using only a few bins however, the specific covariate values might be easier to read off the plot. See also the discrete
argument.
Whether to draw lines between the individual area segments or not. When discrete=TRUE
is used, this might be a good option to help visually separate the segments.
The color of the separator lines. Ignored if sep_lines=FALSE
.
The size of the separator lines. Ignored if sep_lines=FALSE
.
The linetype of the separator lines. Ignored if sep_lines=FALSE
.
The transparency level of the separator lines. Ignored if sep_lines=FALSE
.
A character string used as the x-axis label of the plot.
A character string used as the y-axis label of the plot.
A character string used as the title of the plot.
A character string used as the subtitle of the plot.
A character string used as the legend title of the plot.
Where to put the legend. See ?theme
for more details.
A ggplot2 theme which is applied to the plot.
A named list of arguments that are passed to the facet_wrap
function call when creating a plot separated by groups. Ignored if group=NULL
. Any argument except the facets
argument of the facet_wrap
function can be used. For example, if the user wants to allow free y-scales, this argument could be set to list(scales="free_y")
.
A single number specifying to how many digits the labels of the plot should be rounded or NULL
(default). If NULL
, no rounding is performed and the exact values are presented. This argument is only used when discrete=TRUE
is used and ignored otherwise.
A single number > 0 specifying the size
parameter in the pammtools::geom_stepribbon()
calls whenever discrete=FALSE
is used. This size parameter defines the size of the outline of each individual element of the plot. Can usually be left as is. Sometimes when saving these graphics to .png
or .jpg
files it may be useful to increase this value to avoid weird looking lines between the areas.
Whether to add a standard Kaplan-Meier estimator to the plot or not. If group
is defined, the Kaplan-Meier estimator will be stratified by the grouping variable. If cif=TRUE
was used, the cumulative incidence will be displayed instead of the survival curve.
The size of the Kaplan-Meier line. Ignored if kaplan_meier=FALSE
.
The linetype of the Kaplan-Meier line. Ignored if kaplan_meier=FALSE
.
The transparency level of the Kaplan-Meier line. Ignored if kaplan_meier=FALSE
.
The color of the Kaplan-Meier line. Ignored if kaplan_meier=FALSE
.
A single logical value specifying whether the relationship between the variable
and the survival probability is monotonic or not. If there are non-monotonic effects, the areas will be drawn on top of each other when using monotonic=TRUE
(default). By setting this argument to FALSE
, the plot will be divided into multiple facets. Each facet contains the plot for a certain range of values of the variable
, in which the effect is monotonic. The group
argument may not be used with monotonic=FALSE
. This also only works for continuously shaded ares, e.g. with horizons containing at least 40 distinct values.
Further arguments passed to curve_cont
.
Robin Denz
This function is very similar to a contour plot (see plot_surv_contour
), but with the probability of interest on the y-axis and the color representing the values of the continuous variable of interest. The main advantage of this type of plot is, that it has the same structure as a usual Kaplan-Meier plot. The only difference is that instead of single curves stratified by some variable, the curves are plotted as an area instead.
This is achieved by estimating value-specific curves over the whole range of the continuous covariate using direct standardization and a previously fitted time-to-event model (see curve_cont
). The area between those curves is then simply filled in (using the geom_stepribbon
function from the pammtools package). By using a big number of individual curves, the appearance of a continuously shaded area is created. This is done by default when using the argument discrete=FALSE
. By using discrete=TRUE
, only a small number of value-specific curves are estimated, resulting in only a few discrete bins. When using only a few bins, the output is therefore even closer to a contour plot.
The major downside of this plotting method is that it has problems handling non-monotone effects. Curved relationships between the variable and the survival time result in the areas being plotted on top of each other in a standard survival area plot. By using monotonic=FALSE
, the user may still use this function for nonlinear effects. This strategy is not optimal when the relationship is very complex, resulting in lots of facets in the plot. We recommend using either the plot_surv_contour
, plot_surv_heatmap
or plot_surv_matrix
functions in this case.
Robin Denz, Nina Timmesfeld (2023). "Visualizing the (Causal) Effect of a Continuous Variable on a Time-To-Event Outcome". In: Epidemiology 34.5
library(contsurvplot)
library(riskRegression)
library(survival)
library(ggplot2)
library(pammtools)
# using data from the survival package
data(nafld, package="survival")
# take a random sample to keep example fast
set.seed(42)
nafld1 <- nafld1[sample(nrow(nafld1), 100), ]
# fit cox-model with age
model <- coxph(Surv(futime, status) ~ age, data=nafld1, x=TRUE)
# plot effect of age on survival using defaults
plot_surv_area(time="futime",
status="status",
variable="age",
data=nafld1,
model=model)
# plot it only for 60 to 80 year old people
plot_surv_area(time="futime",
status="status",
variable="age",
data=nafld1,
model=model,
horizon=seq(60, 80, 0.5))
# plot it only for 60 to 60 year old people, using discrete bins
# and a black and white color scale
plot_surv_area(time="futime",
status="status",
variable="age",
data=nafld1,
model=model,
horizon=seq(60, 80, 5),
discrete=TRUE,
start_color="grey",
end_color="black")
Run the code above in your browser using DataLab