Last chance! 50% off unlimited learning
Sale ends in
Function for generating a random Questionnaires Analysis Dataset for a given Subject-Level Analysis Dataset.
radqs(
adsl,
param = c("BFI All Questions", "Fatigue Interference",
"Function/Well-Being (GF1,GF3,GF7)", "Treatment Side Effects (GP2,C5,GP5)",
"FKSI-19 All Questions"),
paramcd = c("BFIALL", "FATIGI", "FKSI-FWB", "FKSI-TSE", "FKSIALL"),
visit_format = "WEEK",
n_assessments = 5L,
n_days = 5L,
seed = NULL,
na_percentage = 0,
na_vars = list(LOQFL = c(NA, 0.1), ABLFL2 = c(1234, 0.1), ABLFL = c(1235, 0.1), CHG2 =
c(1235, 0.1), PCHG2 = c(1235, 0.1), CHG = c(1234, 0.1), PCHG = c(1234, 0.1)),
cached = FALSE
)
data.frame
(data.frame
)
Subject-Level Analysis Dataset (ADSL).
(character vector
)
Parameter values.
(character vector
)
Parameter code values.
(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").
(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 ADQS data cadqs
should be returned or new data
should be generated. If set to TRUE
then the other arguments to radqs
will be ignored.
npaszty
One record per subject per parameter per analysis visit per analysis date.
Keys: STUDYID
, USUBJID
, PARAMCD
, AVISITN
adsl <- radsl(N = 10, seed = 1, study_duration = 2)
adqs <- radqs(adsl, visit_format = "WEEK", n_assessments = 7L, seed = 2)
adqs
adqs <- radqs(adsl, visit_format = "CYCLE", n_assessments = 3L, seed = 2)
adqs
Run the code above in your browser using DataLab