Versions Compared

Key

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

...

  • The AnalysisSet class is used to define subject populations (i.e., criteria for the selection of subjects for inclusion in an analysis), as described in the AnalysisSet section.
  • The DataSubset class is used to define criteria for the selection of data records for inclusion in an analysis, as described in the DataSubset section.
  • The Group class, through use of its two 2 specializations, AnalysisGroup and DataGroup, is used to define the criteria for grouping subjects and data records (respectively) for analysis, as described in the GroupingFactor section.

Each instance of the WhereClause class (or any of its specializations) defines either:

  • A simple condition based on the value or values for a single dataset variable or
  • A compound expression that either:
    • combines selection criteria, which are defined in other instances of the WhereClause class (or 1 of its specializations) that represent simple conditions or other compound expressions, or
    • negates the selection criteria defined in another single instance of the WhereClause class (or 1 of its specializations) that represents a compound expression. Note that a compound expression should generally not be created to negate a single simple condition; another simple condition using the inverse comparator should be created instead (i.e., using "NE" vs. "EQ", "LT" vs. "GE", "GT" vs. "LE", or "NOTIN" vs. "IN").

...

  • The level attribute contains an integer that indicates the level at which the specified condition is being applied, with a value of "1" indicating the "top" level. The level attribute:
    • Has a value of "1" in any instance of a specialization of the WhereClause class where an identifier value is assigned. 
    • Contains a value greater than 1 only in instances of the WhereClause class that are used to define sub-conditions subconditions within a compound expression.
  • The order attribute contains an integer to order this instance of the WhereClause class with respect to other instances of the WhereClause at the same level.
    • When the value of the level attribute is greater than 1 (i.e., this instance of the WhereClause class defines one of the sub-clauses subclauses being referenced in a compound expression), the order attribute defines the order of this instance of the WhereClause class with respect to the other selection criteria with which it is being referenced (i.e., "1" for the first, "2" for the second, etc.and so on).
    • When the value of the level attribute is "1":
      • In instances of either of the specializations of the Group class, the order attribute is used to define the order of the group with respect to other groups in the grouping factor, as described in the GroupingFactor section.
      • In all other situations, the order attribute should have a value of "1".
  • Either:

...