The analyze function surv_timepoint()
creates a layout element to analyze patient survival rates and difference
of survival rates between groups at a given time point. The primary analysis variable vars
is the time variable.
Other required inputs are time_point
, the numeric time point of interest, and is_event
, a variable that
indicates whether or not an event has occurred. The method
argument is used to specify whether you want to analyze
survival estimations ("surv"
), difference in survival with the control ("surv_diff"
), or both of these
("both"
).
surv_timepoint(
lyt,
vars,
time_point,
is_event,
control = control_surv_timepoint(),
method = c("surv", "surv_diff", "both"),
na_str = default_na_str(),
nested = TRUE,
...,
table_names_suffix = "",
var_labels = "Time",
show_labels = "visible",
.stats = c("pt_at_risk", "event_free_rate", "rate_ci", "rate_diff", "rate_diff_ci",
"ztest_pval"),
.stat_names = NULL,
.formats = list(rate_ci = "(xx.xx, xx.xx)"),
.labels = NULL,
.indent_mods = if (method == "both") {
c(rate_diff = 1L, rate_diff_ci = 2L,
ztest_pval = 2L)
} else {
c(rate_diff_ci = 1L, ztest_pval = 1L)
}
)s_surv_timepoint(
df,
.var,
time_point,
is_event,
control = control_surv_timepoint(),
...
)
s_surv_timepoint_diff(
df,
.var,
.ref_group,
.in_ref_col,
time_point,
control = control_surv_timepoint(),
...
)
a_surv_timepoint(
df,
...,
.stats = NULL,
.stat_names = NULL,
.formats = NULL,
.labels = NULL,
.indent_mods = NULL
)
surv_timepoint()
returns a layout object suitable for passing to further layouting functions,
or to rtables::build_table()
. Adding this function to an rtable
layout will add formatted rows containing
the statistics from s_surv_timepoint()
and/or s_surv_timepoint_diff()
to the table layout depending on
the value of method
.
s_surv_timepoint()
returns the statistics:
pt_at_risk
: Patients remaining at risk.
event_free_rate
: Event-free rate (%).
rate_se
: Standard error of event free rate.
rate_ci
: Confidence interval for event free rate.
event_free_rate_3d
: Event-free rate (%) with Confidence interval.
s_surv_timepoint_diff()
returns the statistics:
rate_diff
: Event-free rate difference between two groups.
rate_diff_ci
: Confidence interval for the difference.
rate_diff_ci_3d
: Event-free rate difference and confidence interval between two groups.
ztest_pval
: p-value to test the difference is 0.
a_surv_timepoint()
returns the corresponding list with formatted rtables::CellValue()
.
(PreDataTableLayouts
)
layout that analyses will be added to.
(character
)
variable names for the primary analysis variable to be iterated over.
(numeric(1)
)
survival time point of interest.
(flag
)
TRUE
if event, FALSE
if time to event is censored.
(list
)
parameters for comparison details, specified by using the helper function
control_surv_timepoint()
. Some possible parameter options are:
conf_level
(proportion
)
confidence level of the interval for survival rate.
conf_type
(string
)
confidence interval type. Options are "plain" (default), "log", "log-log",
see more in survival::survfit()
. Note option "none" is no longer supported.
(string
)
"surv"
(survival estimations), "surv_diff"
(difference in survival with the
control), or "both"
.
(string
)
string used to replace all NA
or empty values in the output.
(flag
)
whether this layout instruction should be applied within the existing layout structure _if
possible (TRUE
, the default) or as a new top-level element (FALSE
). Ignored if it would nest a split.
underneath analyses, which is not allowed.
additional arguments for the lower level functions.
(string
)
optional suffix for the table_names
used for the rtables
to
avoid warnings from duplicate table names.
(character
)
variable labels.
(string
)
label visibility: one of "default", "visible" and "hidden".
(character
)
statistics to select for the table.
Options are: 'pt_at_risk', 'event_free_rate', 'rate_se', 'rate_ci', 'event_free_rate_3d'
(character
)
names of the statistics that are passed directly to name single statistics
(.stats
). This option is visible when producing rtables::as_result_df()
with make_ard = TRUE
.
(named character
or list
)
formats for the statistics. See Details in analyze_vars
for more
information on the "auto"
setting.
(named character
)
labels for the statistics (without indent).
(named integer
)
indent modifiers for the labels. Each element of the vector
should be a name-value pair with name corresponding to a statistic specified in .stats
and value the indentation
for that statistic's row label.
(data.frame
)
data set containing all analysis variables.
(string
)
single variable name that is passed by rtables
when requested
by a statistics function.
(data.frame
or vector
)
the data corresponding to the reference group.
(flag
)
TRUE
when working with the reference level, FALSE
otherwise.
surv_timepoint()
: Layout-creating function which can take statistics function arguments
and additional format arguments. This function is a wrapper for rtables::analyze()
.
s_surv_timepoint()
: Statistics function which analyzes survival rate.
s_surv_timepoint_diff()
: Statistics function which analyzes difference between two survival rates.
a_surv_timepoint()
: Formatted analysis function which is used as afun
in surv_timepoint()
.
library(dplyr)
adtte_f <- tern_ex_adtte %>%
filter(PARAMCD == "OS") %>%
mutate(
AVAL = day2month(AVAL),
is_event = CNSR == 0
)
# Survival at given time points.
basic_table() %>%
split_cols_by(var = "ARMCD", ref_group = "ARM A") %>%
add_colcounts() %>%
surv_timepoint(
vars = "AVAL",
var_labels = "Months",
is_event = "is_event",
time_point = 7
) %>%
build_table(df = adtte_f)
# Difference in survival at given time points.
basic_table() %>%
split_cols_by(var = "ARMCD", ref_group = "ARM A") %>%
add_colcounts() %>%
surv_timepoint(
vars = "AVAL",
var_labels = "Months",
is_event = "is_event",
time_point = 9,
method = "surv_diff",
.indent_mods = c("rate_diff" = 0L, "rate_diff_ci" = 2L, "ztest_pval" = 2L)
) %>%
build_table(df = adtte_f)
# Survival and difference in survival at given time points.
basic_table() %>%
split_cols_by(var = "ARMCD", ref_group = "ARM A") %>%
add_colcounts() %>%
surv_timepoint(
vars = "AVAL",
var_labels = "Months",
is_event = "is_event",
time_point = 9,
method = "both"
) %>%
build_table(df = adtte_f)
Run the code above in your browser using DataLab