Function for generating random Exposure Analysis Dataset for a given Subject-Level Analysis Dataset.
radex(
adsl,
param = c("Dose administered during constant dosing interval",
"Number of doses administered during constant dosing interval",
"Total dose administered", "Total number of doses administered"),
paramcd = c("DOSE", "NDOSE", "TDOSE", "TNDOSE"),
paramu = c("mg", " ", "mg", " "),
parcat1 = c("INDIVIDUAL", "OVERALL"),
parcat2 = c("Drug A", "Drug B"),
visit_format = "WEEK",
n_assessments = 5L,
n_days = 5L,
max_n_exs = 6L,
lookup = NULL,
seed = NULL,
na_percentage = 0,
na_vars = list(AVAL = c(NA, 0.1), AVALU = c(NA), 0.1),
cached = FALSE
)
data.frame
(data.frame
)
Subject-Level Analysis Dataset (ADSL).
(character vector
)
Parameter values.
(character vector
)
Parameter code values.
(character vector
)
Parameter unit values.
(character vector
)
Dose amount categories. Defaults to "Individual" and "Overall".
(character vector
)
Types of drug received. Defaults to "Drug A" and "Drug B".
(character
)
Type of visit. Options are "WEEK" and "CYCLE".
(integer
)
Number of weeks or cycles.
(integer
)
Number of days in each cycle (only used if visit_format
is "CYCLE").
(integer
)
Maximum number of exposures per patient. Defaults to 6.
(data.frame
)
Additional parameters.
(numeric
)
Seed to use for reproducible random number generation.
(proportion
)
Default percentage of values to be replaced by NA
.
(list
)
A named list where the name of each element is a column name of ds
. Each
element of this list should be a numeric vector with two elements:
seed
(numeric
)
The seed to be used for this element - can be NA
.
percentage
(proportion
)
Percentage of elements to be replaced with NA
.
If NA
, na_percentage
is used as a default.
boolean whether the cached ADEX data cadex
should be returned or new data
should be generated. If set to TRUE
then the other arguments to radex
will be ignored.
One record per each record in the corresponding SDTM domain.
Keys: STUDYID
, USUBJID
, EXSEQ
, PARAMCD
, PARCAT1
, ASTDTM
, AENDTM
, ASTDY
, AENDY
,
AVISITN
, EXDOSFRQ
, EXROUTE
, VISIT
, VISITDY
, EXSTDTC
, EXENDTC
, EXSTDY
, EXENDY
adsl <- radsl(N = 10, study_duration = 2, seed = 1)
adex <- radex(adsl, seed = 2)
adex
Run the code above in your browser using DataLab