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

Compare with Current View Page History

« Previous Version 2 Next »

Model Documentation

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

ER Diagram: OperationResult

An instance of the OperationResult is created for each individual "statistic" value generated by the analysis. There will be at least 1 instance for each statistical operation defined for the method specified in the methodId attribute of the analysis. For analyses with at least one grouping factor that is marked as generating a result for each group (the resultsByGroup attribute of the OrderedGroupingFactor class has a value of "true"), there will be 1 instance for statistical operation and for each combination of groups within results-by-group groupings. 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 groupings, there will only be 1 result value (i.e., only one 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 groupings:
    • "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) - one 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

  • No labels