Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Changed "data grouping factor" to "grouping factor" (ARSP-28)

...

Xfancy
classrowcaps
Lines 2-29:

Show the attributes of the instance of the GroupingFactor class for the first grouping factor, "Sex" (line 3), which is defined as being based on the ADSL SEX grouping variable (lines 4 and 5). The grouping factor is not data-driven (line 6), so the groups attribute is included (line 7) and contains 2 predefined groups, each specified as a simple condition represented as an instance of the Group class:

  • Lines 8-17: Show the first predefined group (order = 1), which is identified as "AnlsGrouping_05_Sex_1", named as "Female" (line 9), labeled as "F" (line 10), and contains a simple condition specifying that the value of the SEX variable in the ADSL dataset is equal to "F", which could be expressed as:
    • ADSL.SEX EQ 'F'
  • Lines 18-27: Show the second predefined group (order = 2), which is identified as "AnlsGrouping_05_Sex_2", named as "Male" (line 20), labeled as "M" (line 21), and contains a simple condition specifying that the value of the SEX variable in the ADSL dataset is equal to "M", which could be expressed as:
    • ADSL.SEX EQ 'M'
Lines 30-34:

Show the attributes of the instance of the GroupingFactor class for the second grouping factor, "Country" (line 31), which is defined as being based on the ADSL COUNTRY grouping variable (lines 32 and 33). The grouping factor is data-driven (line 34), so the groups attribute is not included; the groups within this grouping factor are derived from the distinct values in the ADSL COUNTRY variable.

Lines 35-60:

Show the attributes of the instance of the GroupingFactor class for the first grouping factor, "Vital Signs Parameter" (line 36), which is defined as being based on the ADVS PARAMCD grouping variable (lines 37 and 38). The grouping factor is not data-driven (line 39), so the groups attribute is included (line 40) and contains 2 predefined groups, each specified as a simple condition represented as an instance of the Group class:

  • Lines 41-50: Show the first predefined group (order = 1), which is identified as "AnlsGrouping_03_Param_1", named as "Systolic Blood Pressure (mmHg)" (line 42), 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 51-60: Show the second predefined group (order = 2), which is identified as "AnlsGrouping_03_Param_2", named as "Diastolic Blood Pressure (mmHg)" (line 52), and contains a simple condition specifying that the value of the PARAMCD variable in the ADVS dataset is equal to "DIABP", which could be expressed as:
    • ADVS.PARAMCD EQ 'DIABP'
Lines 61-65:

Show the attributes of the instance of the GroupingFactor class for the second grouping factor, "System Organ Class" (line 62), which is defined as being based on the ADAE AESOC grouping variable (lines 63 and 64). The grouping factor is data-driven (line 65), so the groups attribute is not included; the groups within this data grouping factor are derived from the distinct values in the AESOC variable.

...