dst01_main {chevron} | R Documentation |
DST01 Table 1 (Default) Patient Disposition Table 1.
Description
The DST01 Disposition Table provides an overview of patients study completion. For patients who discontinued the study a reason is provided.
Usage
dst01_main(
adam_db,
arm_var = "ARM",
lbl_overall = "All {Patient_label}",
study_status_var = "EOSSTT",
detail_vars = list(Discontinued = c("DCSREAS")),
trt_status_var = NULL,
...
)
dst01_pre(adam_db, ...)
dst01_post(tlg, prune_0 = TRUE, ...)
dst01
Arguments
adam_db |
( |
arm_var |
( |
lbl_overall |
( |
study_status_var |
( |
detail_vars |
Named ( |
trt_status_var |
( |
... |
not used. |
tlg |
( |
prune_0 |
( |
Format
An object of class chevron_t
of length 1.
Details
Default patient disposition table summarizing the reasons for patients withdrawal.
Numbers represent absolute numbers of patients and fraction of
N
.Remove zero-count rows.
Split columns by arm.
Include a total column by default.
Sort withdrawal reasons by alphabetic order.
Value
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).
Functions
-
dst01_main()
: Main TLG function -
dst01_pre()
: Preprocessing -
dst01_post()
: Postprocessing
Note
-
adam_db
object must contain anadsl
table with the columns specified bystatus_var
anddisc_reason_var
.
Examples
run(dst01, syn_data, detail_vars = list(Ongoing = "STDONS"))
run(dst01, syn_data, detail_vars = list(Discontinued = "DCSREAS", Ongoing = "STDONS"))
run(
dst01, syn_data,
detail_vars = list(
Discontinued = c("DCSREASGP", "DCSREAS"),
Ongoing = "STDONS"
)
)