| fstg02_main | R Documentation |
FSTG02 Subgroup Analysis of Survival Duration.The template produces the subgroup analysis of survival duration graphic.
fstg02_main(
adam_db,
dataset = "adtte",
arm_var = "ARM",
subgroups = c("SEX", "AGEGR1", "RACE"),
strata_var = NULL,
stat_var = c("n_tot", "n", "median", "hr", "ci"),
...
)
fstg02_pre(adam_db, ...)
fstg02
adam_db |
( |
dataset |
( |
arm_var |
( |
subgroups |
( |
strata_var |
( |
stat_var |
( |
... |
Further arguments passed to |
An object of class chevron_g of length 1.
No overall value.
Keep zero count rows by default.
the main function returns a gTree object.
a gTree object.
the preprocessing function returns a list of data.frame.
fstg02_main(): Main TLG Function
fstg02_pre(): Preprocessing
adam_db object must contain the table specified by dataset with "PARAMCD", "ARM",
"AVAL", "AVALU", "CNSR", and the columns specified by subgroups which is denoted as
c("SEX", "AGEGR1", "RACE") by default.
If the plot is too large to be rendered in the output, please refer to FSTG01.
library(dplyr)
library(dunlin)
proc_data <- log_filter(
syn_data,
PARAMCD == "OS" & ARM %in% c("A: Drug X", "B: Placebo"), "adtte"
)
run(fstg02, proc_data,
subgroups = c("SEX", "AGEGR1", "RACE"),
conf_level = 0.90, dataset = "adtte"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.