- time
A single character string specifying the time-to-event variable. Needs to be a valid column name of a numeric variable in data
.
- status
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
.
- variable
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.
- group
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.
- data
A data.frame
containing all required variables.
- model
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.
- cif
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.
- na.action
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.
- horizon
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 100 equally spaced steps. In this function, this needs to be a equally spaced vector.
- fixed_t
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 100 equally spaced steps from 0 to the maximum observed event time. In this function, this needs to be a equally spaced vector.
- max_t
A number indicating the latest survival time which is to be plotted.
- n_col
The number of columns to use in the matrix style heatmap. This parameter only controls how many tiles are shown, not how many are estimated. The amount of estimated probabilities is controlled using the fixed_t
and horizon
arguments. See details.
- n_row
The number of rows to use in the matrix style heatmap. See n_col
.
- start_color
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. Defaults to "red"
, set to NULL
to use the default ggplot2 palette.
- end_color
The color used for the highest value in horizon
. Defaults to "blue"
. See argument start_color
.
- alpha
The transparency level of the plot.
- xlab
A character string used as the x-axis label of the plot.
- ylab
A character string used as the y-axis label of the plot.
- title
A character string used as the title of the plot.
- subtitle
A character string used as the subtitle of the plot.
- legend.title
A character string used as the legend title of the plot.
- legend.position
Where to put the legend. See ?theme
for more details.
- gg_theme
A ggplot2 theme which is applied to the plot.
- facet_args
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")
.
- panel_border
Whether to draw a border around the heatmap or not. Is set to FALSE by default to mimic standard heatmaps.
- axis_dist
The distance of the axis ticks to the colored heatmap. Is set to 0 by default to mimic standard heatmaps.
- border_color
The color of the individual rectangles borders. Defaults to "white"
.
- border_size
The size of the individual rectangles borders. Defaults to 0.5.
- numbers
Whether to put the numbers of the average estimated probabilities into the rectangles or not. Defaults to TRUE
.
- number_color
The color of the numbers inside the rectangles. Ignored if numbers=FALSE
.
- number_size
The size of the numbers inside the rectangles. Ignored if numbers=FALSE
.
- number_family
The font family of the numbers inside the rectangles. Ignored if numbers=FALSE
.
- number_fontface
The fontface of the numbers inside the rectangles. Ignored if numbers=FALSE
.
- number_digits
The amount of digits the numbers inside the rectangles should be rounded to. Ignored if numbers=FALSE
.
- ...
Further arguments passed to curve_cont
.