Learn R Programming

⚠️There's a newer version (0.4.9) of this package.Take me there.

survminer: Survival Analysis and Visualization

The survminer R package provides functions for facilitating survival analysis and visualization.

The main functions, in the package, are organized in different categories as follow.

Survival Curves

  • arrange_ggsurvplots(): Arranges multiple ggsurvplots on the same page.

  • ggsurvevents(): Plots the distribution of event's times.

  • surv_summary(): Summary of a survival curve. Compared to the default summary() function, surv_summary() creates a data frame containing a nice summary from survfit results.

  • surv_cutpoint(): Determines the optimal cutpoint for one or multiple continuous variables at once. Provides a value of a cutpoint that correspond to the most significant relation with survival.

  • pairwise_survdiff(): Multiple comparisons of survival curves. Calculate pairwise comparisons between group levels with corrections for multiple testing.

Diagnostics of Cox Model

  • ggcoxdiagnostics(): Displays diagnostics graphs presenting goodness of Cox Proportional Hazards Model fit.

  • ggcoxfunctional(): Displays graphs of continuous explanatory variable against martingale residuals of null cox proportional hazards model. It helps to properly choose the functional form of continuous variable in cox model.

Summary of Cox Model

  • ggcoxadjustedcurves(): Plots adjusted survival curves for coxph model.

Competing Risks

Find out more at http://www.sthda.com/english/rpkgs/survminer/, and check out the documentation and usage examples of each of the functions in survminer package.

Installation and loading

Install from CRAN as follow:

install.packages("survminer")

Or, install the latest version from GitHub:

if(!require(devtools)) install.packages("devtools")
devtools::install_github("kassambara/survminer", build_vignettes = FALSE)

Load survminer:

library("survminer")

ggsurvplot: Drawing survival curves

Fitting survival curves

require("survival")
fit <- survfit(Surv(time, status) ~ sex, data = lung)

Basic plots

ggsurvplot(fit, data = lung)

Customized survival curves

ggsurvplot(fit, data = lung, size = 1,  # change line size
           palette = c("#E7B800", "#2E9FDF"), # custom color palettes
           conf.int = TRUE, # Add confidence interval
           pval = TRUE, # Add p-value
           risk.table = TRUE, # Add risk table
           risk.table.col = "strata", # Risk table color by groups
           legend.labs = c("Male", "Female"), # Change legend labels
           risk.table.height = 0.25, # Useful to change when you have multiple groups
           ggtheme = theme_bw() # Change ggplot2 theme
           )

Note that, additional arguments are available to customize the main title, axis labels, the font style, axis limits, legends and the number at risk table.

More customized survival curves

Focus on xlim and break.time.by parameters which do not change the calculations of estimates of survival surves. Also note risk.table.y.text.col = TRUE and risk.table.y.text = FALSE that provide bars instead of names in text annotations of the legend of risk table.

ggsurvplot(
   fit,                     # survfit object with calculated statistics.
   data = lung,             # data used to fit survival curves.
   risk.table = TRUE,       # show risk table.
   pval = TRUE,             # show p-value of log-rank test.
   conf.int = TRUE,         # show confidence intervals for 
                            # point estimates of survival curves.
   xlim = c(0,500),         # present narrower X axis, but not affect
                            # survival estimates.
   xlab = "Time in days",   # customize X axis label.
   break.time.by = 100,     # break X axis in time intervals by 500.
   ggtheme = theme_light(), # customize plot and risk table with a theme.
 risk.table.y.text.col = T, # colour risk table text annotations.
  risk.table.y.text = FALSE # show bars instead of names in text annotations
                            # in legend of risk table
)

Uber customized survival curves

ggsurv <- ggsurvplot(
           fit,                     # survfit object with calculated statistics.
           data = lung,             # data used to fit survival curves.
           risk.table = TRUE,       # show risk table.
           pval = TRUE,             # show p-value of log-rank test.
           conf.int = TRUE,         # show confidence intervals for 
                                    # point estimates of survival curves.
           xlim = c(0,500),         # present narrower X axis, but not affect
                                    # survival estimates.
           xlab = "Time in days",   # customize X axis label.
           break.time.by = 100,     # break X axis in time intervals by 500.
           ggtheme = theme_light(), # customize plot and risk table with a theme.
          risk.table.y.text.col = T,# colour risk table text annotations.
          risk.table.height = 0.25, # the height of the risk table
          risk.table.y.text = FALSE,# show bars instead of names in text annotations
                                    # in legend of risk table.
          ncensor.plot = TRUE,      # plot the number of censored subjects at time t
          ncensor.plot.height = 0.25,
          conf.int.style = "step",  # customize style of confidence intervals
          surv.median.line = "hv",  # add the median survival pointer.
          legend.labs = 
            c("Male", "Female")    # change legend labels.
        )

# Apply custom color palettes and print
ggpar(ggsurv, palette = c("#E7B800", "#2E9FDF"))

Uber platinum customized survival curves

# Changing Labels
# %%%%%%%%%%%%%%%%%%%%%%%%%%
# Labels for Survival Curves (plot)
ggsurv$plot <- ggsurv$plot + labs(
  title = "Survival curves",                     
  subtitle = "Based on Kaplan-Meier estimates",  
  caption = "created with survminer"             
  )

# Labels for Risk Table 
ggsurv$table <- ggsurv$table + labs(
  title = "Note the risk set sizes",          
  subtitle = "and remember about censoring.", 
  caption = "source code: website.com"        
  )

# Labels for ncensor plot 
ggsurv$ncensor.plot <- ggsurv$ncensor.plot + labs( 
  title = "Number of censorings", 
  subtitle = "over the time.",
  caption = "source code: website.com"
  )

# Changing the font size, style and color
# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Applying the same font style to all the components of ggsurv:
# survival curves, risk table and censor part

ggsurv <- ggpar(ggsurv,
          font.title = c(16, "bold", "darkblue"),         
          font.subtitle = c(15, "bold.italic", "purple"), 
          font.caption = c(14, "plain", "orange"),        
          font.x = c(14, "bold.italic", "red"),          
          font.y = c(14, "bold.italic", "darkred"),      
          font.tickslab = c(12, "plain", "darkgreen"),
          legend = "top"
          )

# Apply custom color palettes and print
ggpar(ggsurv, palette = c("#E7B800", "#2E9FDF"))

Uber platinum premium customized survival curves

# Using specific fonts for risk table and ncensor plots
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Font for Risk Table
ggsurv$table <- ggpar(ggsurv$table,
                      font.title = c(13, "bold.italic", "green"),
                      font.subtitle = c(15, "bold", "pink"),
                      font.caption = c(11, "plain", "darkgreen"),
                      font.x = c(8, "bold.italic", "orange"),
                      font.y = c(11, "bold.italic", "darkgreen"),
                      font.tickslab = c(9, "bold", "red")
                      )


# Font for ncensor plot
ggsurv$ncensor.plot <- ggpar(ggsurv$ncensor.plot,
                            font.title = c(13, "bold.italic", "green"),
                            font.subtitle = c(15, "bold", "pink"),
                            font.caption = c(11, "plain", "darkgreen"),
                            font.x = c(8, "bold.italic", "orange"),
                            font.y = c(11, "bold.italic", "darkgreen"),
                            font.tickslab = c(9, "bold", "red")
                            )

print(ggsurv)

Blog posts

Copy Link

Version

Install

install.packages('survminer')

Monthly Downloads

44,165

Version

0.3.1

License

GPL-2

Maintainer

Alboukadel Kassambara

Last Published

March 21st, 2017

Functions in survminer (0.3.1)

add_ggsurvplot

Add Components to a ggsurvplot
surv_cutpoint

Determine the Optimal Cutpoint for Continuous Variables
theme_classic2

ggplot2 classic theme with axis lines
arrange_ggsurvplots

Arranging Multiple ggsurvplots
ggcompetingrisks

Cumulative Incidence Curves for Competing Risks
ggcoxadjustedcurves

Adjusted Survival Curves for Cox Proportional Hazards Model
ggcoxzph

Graphical Test of Proportional Hazards with ggplot2
ggcumcensor

Cumulative Number of Censored Subjects
BMT

Bone Marrow Transplant
BRCAOV.survInfo

Breast and Ovarian Cancers Survival Information
ggcoxdiagnostics

Diagnostic Plots for Cox Proportional Hazards Model with ggplot2
ggcumevents

Cumulative Number of Events Table
ggforest

Drawing Forest Plot for CoxPH model
myeloma

Multiple Myeloma Data
pairwise_survdiff

Multiple Comparisons of Survival Curves
ggsurvplot

Drawing Survival Curves Using ggplot2
theme_survminer

Theme for Survminer Plots
ggcoxfunctional

Functional Form of Continuous Variable in Cox Proportional Hazards Model
ggrisktable

Number at Risk Table
ggsurvevents

Distribution of Event's Times
surv_summary

Nice Summary of a Survival Curve