CMT02_PT
Table 1 (Default) Concomitant Medications by Preferred Name.A concomitant medication table with the number of subjects and the total number of treatments by medication name sorted by frequencies.
cmt02_pt_main(
adam_db,
arm_var = "ARM",
lbl_overall = NULL,
row_split_var = NULL,
medname_var = "CMDECOD",
summary_labels = list(TOTAL = cmt01_label),
...
)cmt02_pt_pre(adam_db, ...)
cmt02_pt_post(
tlg,
prune_0 = TRUE,
sort_by_freq = FALSE,
row_split_var = NULL,
medname_var = "CMDECOD",
...
)
cmt02_pt
the main function returns an rtables
object.
the preprocessing function returns a list
of data.frame
.
the postprocessing function returns an rtables
object or an ElementaryTable
(null report).
An object of class chevron_t
of length 1.
(list
of data.frames
) object containing the ADaM
datasets
(string
) variable used for column splitting
(string
) label used for overall column, if set to NULL
the overall column is omitted
(character
) the variable defining the medication category. By default ATC2
.
(string
) variable name of medical treatment name.
(list
) of summarize labels. See details.
not used.
(TableTree
, Listing
or ggplot
) object typically produced by a main
function.
(flag
) remove 0 count rows
(flag
) whether to sort medication class by frequency.
cmt02_pt_main()
: Main TLG function
cmt02_pt_pre()
: Preprocessing
cmt02_pt_post()
: Postprocessing
Data should be filtered for concomitant medication. (ATIREL == "CONCOMITANT")
.
Numbers represent absolute numbers of subjects and fraction of N
, or absolute numbers when specified.
Remove zero-count rows unless overridden with prune_0 = FALSE
.
Split columns by arm.
Does not include a total column by default.
Sort by medication class alphabetically and within medication class by decreasing total number of patients with
the specific medication.
summary_labels
is used to control the summary for each level. If "all" is used, then each split will have that
summary statistic with the labels. One special case is "TOTAL", this is for the overall population.