add_quantile {ggsurvfit} | R Documentation |
Add Quantile Annotation
Description
Add quantile information annotated on to the plot.
Usage
add_quantile(y_value = NULL, x_value = NULL, ...)
Arguments
y_value , x_value |
Numeric value where the line segment will be drawn.
Default is |
... |
Named arguments passed to |
Value
a ggplot2 figure
See Also
Visit the gallery for examples modifying the default figures
Examples
survfit2(Surv(time, status) ~ sex, data = df_lung) %>%
ggsurvfit() +
add_quantile(linetype = 2) +
scale_ggsurvfit()
survfit2(Surv(time, status) ~ 1, data = df_lung) %>%
ggsurvfit() +
add_quantile(linetype = 2) +
add_quantile(y_value = 0.9, linetype = 3) +
scale_ggsurvfit()
survfit2(Surv(time, status) ~ sex, data = df_lung) %>%
ggsurvfit() +
add_quantile(linetype = 2, y_value = NULL, x_value = 10) +
scale_ggsurvfit()
[Package ggsurvfit version 1.1.0 Index]