You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This example shows the definition of 2 data subsets, each of which is a based on a simple condition represented as an instance of the DataSubset class within the dataSubets attribute of the reporting event.

Lines 2-11:

Show the "Treatment-Emergent Adverse Events" data subset defined as a simple condition that specifies that the value of the TRTEMFL variable in the ADAE dataset is equal to "Y". This condition could be expressed as:

  • ADAE.TRTEMFL EQ 'Y'
Lines 12-21:

Show the "Vital Signs Analysis Records" data subset defined as a simple condition that specifies that the value of the ANL01FL variable in the ADVS dataset is equal to "Y". This condition could be expressed as:

  • ADVS.ANL01FL EQ 'Y'

YAML Example
dataSubsets:
- id: Dss01_TEAE
  label: Treatment-Emergent Adverse Events
  level: 1
  order: 1
  condition:
    dataset: ADAE
    variable: TRTEMFL
    comparator: EQ
    value:
    - Y
- id: Dss09_VS_AnRec
  label: Vital Signs Analysis Records
  level: 1
  order: 1
  condition:
    dataset: ADVS
    variable: ANL01FL
    comparator: EQ
    value:
    - Y

These data subsets could be represented in tabular form as shown in the following table where each instance of the DataSubset class is represented on a separate row.

$titleHtml
Rowidlabellevelorderdatasetvariablecomparatorvalue
1Dss01_TEAETreatment-Emergent Adverse Events11ADAETRTEMFLEQY
2Dss09_VS_AnRecVital Signs Analysis Records11ADVSANL01FLEQY
$warningHtml

  • No labels