Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Xfancy
classrowcaps
Lines 2-6:

Show the attributes of the instance of the DataGroupingFactor class for the first subject grouping factor, "Vital Signs Parameter" (line 3), which is defined as being based on the PARAMCD grouping variable (line 4). The grouping factor is not data-driven (line 5), so the groups attribute is included (line 6) and contains 2 predefined groups, each specified as a simple condition represented as an instance of the DataGroup class:

  • Lines 7-16: Show the first predefined group (order = 1), which is identified as "DataGrouping_01_Param_1", labeled as "Systolic Blood Pressure (mmHg)" (line 8), and contains a simple condition specifying that the value of the PARAMCD variable in the ADVS dataset is equal to "SYSBP", which could be expressed as:
    • ADVS.PARAMCD EQ 'SYSBP'
  • Lines 17-26: Show the second predefined group (order = 2), which is identified as "DataGrouping_01_Param_2", labeled as "Diastolic Blood Pressure (mmHg)" (line 18), and contains a simple condition specifying that that the value of the TRT01A PARAMCD variable in the ADSL ADVS dataset is equal to "Xanomeline Low DoseDIABP", which could be expressed as:
    • ADVS.PARAMCD EQ 'DIABP'
Lines 27-30:

Show the attributes of the instance of the DataGroupingFactor class for the second subject grouping factor, "System Organ Class" (line 28), which is defined as being based on the AESOC grouping variable (line 29). The grouping factor is data-driven (line 30), so the groups attribute is not included; the groups within this data grouping factor are derived from the distinct values in the AESOC variable.

...