Usage
h_ggkm(
data,
xticks = NULL,
yval = "Survival",
censor_show,
xlab,
ylab,
title,
footnotes = NULL,
max_time = NULL,
lwd = 1,
lty = NULL,
pch = 3,
size = 2,
col = NULL,
ci_ribbon = FALSE,
ggtheme = nestcolor::theme_nest()
)
Arguments
- data
(
data.frame
)
survival data as pre-processed byh_data_plot
.- xticks
(
numeric
,number
, orNULL
)
numeric vector of ticks or single number with spacing between ticks on the x axis. IfNULL
(default),labeling::extended()
is used to determine an optimal tick position on the x axis.- yval
(
string
)
value of y-axis. Should be eitherSurvival
(default) orFailure
probability.- censor_show
(
flag
)
whether to show censored.- xlab
(
string
)
label of x-axis.- ylab
(
string
)
label of y-axis.- title
(
string
)
title for plot.- footnotes
(
string
)
footnotes for plot.- max_time
(
numeric
)
maximum value to show on X axis. Only data values less than or up to to this threshold value will be plotted.(NULL
for default)- lwd
(
numeric
)
line width. Length of a vector should be equal to number of strata fromsurvival::survfit()
.- lty
(
numeric
)
line type. Length of a vector should be equal to number of strata fromsurvival::survfit()
.- pch
(
numeric
,string
)
value or character of points symbol to indicate censored cases.- size
(
numeric
)
size of censored point, a class ofunit
.- col
(
character
)
lines colors. Length of a vector should be equal to number of strata fromsurvival::survfit()
.- ci_ribbon
(
flag
)
draw the confidence interval around the Kaplan-Meier curve.- ggtheme
(
theme
)
a graphical theme as provided byggplot2
to control outlook of the Kaplan-Meier curve.
Examples
if (FALSE) {
library(scda)
library(dplyr)
library(survival)
fit_km <- synthetic_cdisc_data("latest")$adtte %>%
filter(PARAMCD == "OS") %>%
survfit(form = Surv(AVAL, 1 - CNSR) ~ ARMCD, data = .)
data_plot <- h_data_plot(fit_km = fit_km)
xticks <- h_xticks(data = data_plot)
gg <- h_ggkm(
data = data_plot,
censor_show = TRUE,
xticks = xticks,
xlab = "Days",
yval = "Survival",
ylab = "Survival Probability",
title = "Survival"
)
gg
}