Learn R Programming

survMisc (version 0.5.3)

autoplotTableAndPlot: Arrange a survival plot with corresponding table and legend.

Description

Arrange a survival plot with corresponding table and legend.

Usage

"autoplot"(object, ..., hideTabLeg = TRUE, tabHeight = 0.25)

Arguments

object
An object of class "tableAndPlot", as returned by ggplot.Ten.
...
Additional arguments (not implemented).
hideTabLeg
Hide table legend.

If hideTabLeg = TRUE (the default), the table legend will not appear.

tabHeight
Table height, as a fraction/ proportion of the whole. tabHeight=0.25 (the default) makes the table $0.25 = 25\%$ of the whole plot height.

Value

A graph, plotted with gridExtra::grid.arrange.

Details

Arguments to plotHeigth and tabHeight are best specified as fractions adding to $1$,

Examples

Run this code
data("kidney", package="KMsurv")
autoplot(survfit(Surv(time, delta) ~ type, data=kidney), type="fill")
autoplot(ten(survfit(Surv(time, delta) ~ type, data=kidney)), type="fill")
data("bmt", package="KMsurv")
s2 <- survfit(Surv(time=t2, event=d3) ~ group, data=bmt)
autoplot(s2)

Run the code above in your browser using DataLab