Class: OperationResult

The OperationResult class is used in the results attribute of an analysis to represent the results of the analysis.

An instance of the OperationResult class is created for each individual "statistic" value generated by the analysis. There will be at least 1 instance of the OperationResult class for each statistical operation defined for the method associated with the analysis (i.e., specified in the methodId attribute of the analysis). For analyses with at least 1 "results-by-group" grouping factor (i.e., a grouping factor that is referenced in the groupingId attribute of an instance of the OrderedGroupingFactor class that is listed in the orderedGrouping attribute of the analysis and has a value of "true" in the resultsByGroup attribute), there will be 1 instance of the OperationResult class for each combination of statistical operation and groups within each results-by-group grouping factor. For example:

  • In a simple analysis for "Count of subjects in the safety population", where the associated analysis method only has a single operation (i.e., count of subjects) and there are no results-by-group grouping factors, there will only be 1 result value (i.e., only 1 instance of the OperationResult class).
  • In an analysis for "Summary of subjects by treatment and sex", where the analysis method has 2 operations (i.e., count of subjects and percent of subjects) and there are 2 results-by-group grouping factors,
    • "Treatment", with 3 groups: "Placebo", "Drug A", and "Drug B"
    • "Sex", with 2 groups: "Male" and "Female",

there will be a total of 12 individual result values (i.e., 12 instances of the OperationResult class); 1 for each combination of operation, treatment group and sex group:

OperationTreatmentSex
Count of subjectsPlaceboMale
Count of subjectsPlaceboFemale
Count of subjectsDrug AMale
Count of subjectsDrug AFemale
Count of subjectsDrug BMale
Count of subjectsDrug BFemale
Percent of subjectsPlaceboMale
Percent of subjectsPlaceboFemale
Percent of subjectsDrug AMale
Percent of subjectsDrug AFemale
Percent of subjectsDrug BMale
Percent of subjectsDrug BFemale

In each instance of the OperationResult class:

The resultGroups attribute is used to associate the result value with any grouping factors defined for the analysis. The association with each grouping factor is represented as an instance of the ResultGroup class, in which:

In the following examples, only the attributes necessary to illustrate the representation of results using the OperationResult class have been included. References to additional information such as analysis sets and data subsets have been excluded from the example analysis definitions.