cmt01_label | R Documentation |
CMT01A
Concomitant Medication by Medication Class and Preferred Name.A concomitant medication table with the number of subjects and the total number of treatments by medication class.
cmt01_label
cmt01a_main(
adam_db,
arm_var = "ARM",
lbl_overall = NULL,
row_split_var = "ATC2",
medname_var = "CMDECOD",
summary_labels = setNames(rep(list(cmt01_label), length(row_split_var) + 1L),
c("TOTAL", row_split_var)),
...
)
cmt01a_pre(adam_db, ...)
cmt01a_post(
tlg,
prune_0 = TRUE,
sort_by_freq = FALSE,
row_split_var = "ATC2",
medname_var = "CMDECOD",
...
)
cmt01a
adam_db |
( |
arm_var |
( |
lbl_overall |
( |
row_split_var |
( |
medname_var |
( |
summary_labels |
( |
... |
not used. |
tlg |
( |
prune_0 |
( |
sort_by_freq |
( |
An object of class character
of length 2.
An object of class chevron_t
of length 1.
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.
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).
cmt01_label
: Default labels
cmt01a_main()
: Main TLG function
cmt01a_pre()
: Preprocessing
cmt01a_post()
: Postprocessing
adam_db
object must contain an adcm
table with the columns specified in row_split_var
and medname_var
as well as "CMSEQ"
.
library(dplyr)
proc_data <- syn_data
proc_data$adcm <- proc_data$adcm %>%
filter(ATIREL == "CONCOMITANT")
run(cmt01a, proc_data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.