Learn R Programming

random.cdisc.data (version 0.3.16)

radrs: Tumor Response Analysis Dataset (ADRS)

Description

[Stable]

Function for generating a random Tumor Response Analysis Dataset for a given Subject-Level Analysis Dataset.

Usage

radrs(
  adsl,
  avalc = NULL,
  lookup = NULL,
  seed = NULL,
  na_percentage = 0,
  na_vars = list(AVISIT = c(NA, 0.1), AVAL = c(1234, 0.1), AVALC = c(1234, 0.1)),
  cached = FALSE
)

Value

data.frame

Arguments

adsl

(data.frame)
Subject-Level Analysis Dataset (ADSL).

avalc

(character vector)
Analysis value categories.

lookup

(data.frame)
Additional parameters.

seed

(numeric)
Seed to use for reproducible random number generation.

na_percentage

(proportion)
Default percentage of values to be replaced by NA.

na_vars

(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.

cached

boolean whether the cached ADRS data cadrs should be returned or new data should be generated. If set to TRUE then the other arguments to radrs will be ignored.

Details

One record per subject per parameter per analysis visit per analysis date. SDTM variables are populated on new records coming from other single records. Otherwise, SDTM variables are left blank.

Keys: STUDYID, USUBJID, PARAMCD, AVISITN, ADT, RSSEQ

Examples

Run this code
adsl <- radsl(N = 10, seed = 1, study_duration = 2)

adrs <- radrs(adsl, seed = 2)
adrs

Run the code above in your browser using DataLab