
Subgroup Analysis for Baseline Characteristic
Source:R/rtf_base_char_subgroup.R
rtf_base_char_subgroup.RdSubgroup Analysis for Baseline Characteristic
Usage
rtf_base_char_subgroup(
outdata,
source,
col_rel_width = NULL,
text_font_size = 8,
orientation = "landscape",
footnotes = NULL,
title = NULL,
path_outdata = NULL,
path_outtable = NULL
)Arguments
- outdata
An
outdataobject created byprepare_base_char_subgroup()- source
A character value of the data source.
- col_rel_width
Column relative width in a vector e.g. c(2,1,1) refers to 2:1:1. Default is NULL for equal column width.
- text_font_size
Text font size. To vary text font size by column, use numeric vector with length of vector equal to number of columns displayed e.g. c(9,20,40).
- orientation
Orientation in 'portrait' or 'landscape'.
- footnotes
A character vector of table footnotes.
- title
Term "analysis", "observation" and "population") for collecting title from metadata or a character vector of table titles.
- path_outdata
A character string of the outdata path.
- path_outtable
A character string of the outtable path.
Examples
# \donttest{
meta <- metalite::meta_adam(
population = metalite_sl_adsl,
observation = metalite_sl_adsl
) |>
metalite::define_plan(metalite::plan(
analysis = "base_char_subgroup", population = "apat",
observation = "apat", parameter = "age"
)) |>
metalite::define_population(
name = "apat", group = "TRTA", subset = SAFFL == "Y"
) |>
metalite::define_parameter(
name = "age", var = "AGE", label = "Age (years)", vargroup = "AGEGR1"
) |>
metalite::define_analysis(
name = "base_char_subgroup", title = "Participant by Age Category and Sex"
) |>
metalite::meta_build()
#> Warning: base_char_subgroup: has missing label
outdata <- prepare_base_char_subgroup(
meta,
population = "apat",
parameter = "age",
subgroup_var = "TRTA",
subgroup_header = c("SEX", "TRTA")
)
outdata |>
format_base_char_subgroup() |>
rtf_base_char_subgroup(
source = "Source: [CDISCpilot: adam-adsl]",
path_outdata = tempfile(fileext = ".Rdata"),
path_outtable = tempfile(fileext = ".rtf")
)
#> The outdata is saved in/tmp/RtmpOJOx6y/file1a471eb14173.Rdata
#> The output is saved in/tmp/RtmpOJOx6y/file1a472b321690.rtf
# }