Model Documentation
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:
Operation | Treatment | Sex |
---|---|---|
Count of subjects | Placebo | Male |
Count of subjects | Placebo | Female |
Count of subjects | Drug A | Male |
Count of subjects | Drug A | Female |
Count of subjects | Drug B | Male |
Count of subjects | Drug B | Female |
Percent of subjects | Placebo | Male |
Percent of subjects | Placebo | Female |
Percent of subjects | Drug A | Male |
Percent of subjects | Drug A | Female |
Percent of subjects | Drug B | Male |
Percent of subjects | Drug B | Female |
- The operationId attribute contains the identifier value for the operation that generated the result (i.e., 1 of the operations defined in the method associated with the analysis).
- The resultGroups attribute may contain references to the grouping factor(s)/group(s) associated with the result (see below).
- The rawValue attribute contains the raw result value generated by the statistical operation, with no formatting or rounding applied.
- The formattedValue attribute contains the result value formatted according to the pattern specified in the resultPattern attribute of the operation referenced by the operationId attribute value. Refer to the Operation section for more information about the resultPattern attribute.
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:
- The groupingId attribute contains the identifier value for the grouping factor.
- For results-by-group grouping factors, the specific group associated with the result is indicated by the value of either:
- The groupId attribute, which contains the identifier value for a predefined group within the grouping factor, or
- The groupValue attribute, which contains 1 of the data values from the grouping variable. The groupValue attribute is used for data-driven grouping factors (i.e., where the value for the dataDriven attribute of the grouping factor is "true"), which do not have predefined groups.
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.
Example
Lines 1-33: | Show the definitions of the 2 grouping factors referenced by the analysis, both of which are not data-driven (dataDriven = false, shown on lines 6 and 24):
|
Lines 34-48: | Show the definition of the method referenced by the analysis, "Summary by group of a categorical variable", which has 2 operations:
|
Lines 49-62: | Show the definition of the analysis:
|
Lines 63-161 | Show the list of results for the analysis. Each entry in the list (starting with the operationId attribute preceded by a hyphen) represents an instance of the OperationResult class and contains:
|
analysisGroupings: - id: AnlsGrouping_01_Trt name: Treatment groupingDataset: ADSL groupingVariable: TRT01A dataDriven: false groups: - id: AnlsGrouping_01_Trt_1 name: Placebo order: 1 ... - id: AnlsGrouping_01_Trt_2 name: Xanomeline Low Dose order: 2 ... - id: AnlsGrouping_01_Trt_3 name: Xanomeline High Dose order: 3 ... - id: AnlsGrouping_02_Sex name: Sex groupingDataset: ADSL groupingVariable: SEX dataDriven: false groups: - id: AnlsGrouping_02_Sex_1 name: Male order: 1 ... - id: AnlsGrouping_02_Sex_2 name: Female order: 2 ... methods: - id: Mth01_CatVar_Summ_ByGrp name: Summary by group of a categorical variable operations: - id: Mth01_CatVar_Summ_ByGrp_1_n name: Count of subjects label: n order: 1 resultPattern: XXX - id: Mth01_CatVar_Summ_ByGrp_2_pct name: Percent of subjects label: '%' order: 2 resultPattern: ( XX.X) ... analyses: - id: An03_03_Sex_Summ_ByTrt name: Summary of Subjects by Treatment and Sex version: 1 dataset: ADSL variable: USUBJID methodId: Mth01_CatVar_Summ_ByGrp orderedGroupings: - order: 1 resultsByGroup: true groupingId: AnlsGrouping_01_Trt - order: 2 resultsByGroup: true groupingId: AnlsGrouping_02_Sex results: - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_1 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_1 rawValue: '33' formattedValue: '33' - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_1 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_2 rawValue: '53' formattedValue: '53' - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_2 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_1 rawValue: '34' formattedValue: '34' - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_2 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_2 rawValue: '50' formattedValue: '50' - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_3 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_1 rawValue: '44' formattedValue: '44' - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_3 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_2 rawValue: '40' formattedValue: '40' - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_1 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_1 rawValue: '38.372093023255815' formattedValue: ( 38.4) - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_1 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_2 rawValue: '61.627906976744185' formattedValue: ( 61.6) - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_2 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_1 rawValue: '40.476190476190474' formattedValue: ( 40.5) - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_2 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_2 rawValue: '59.523809523809526' formattedValue: ( 59.5) - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_3 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_1 rawValue: '52.38095238095238' formattedValue: ( 52.4) - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_3 - groupingId: AnlsGrouping_02_Sex groupId: AnlsGrouping_02_Sex_2 rawValue: '47.61904761904762' formattedValue: ( 47.6) ... ...
The results for this analysis could be represented in tabular format as shown in the following table, where the value of the id attribute of the analysis is shown in the "analysisId" column and the groupingId and groupId values from the 2 instances of the ResultGroup class found in the resultGroups attribute for each result are represented in separate pairs of columns ("groupingId1"/"groupId1" and "groupingId2"/"groupId2") so that each result is represented on a single row:
analysisId | operationId | groupingId1 | groupId1 | groupingId2 | groupId2 | rawValue | formattedValue |
---|---|---|---|---|---|---|---|
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_1 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_1 | 33 | 33 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_1 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_2 | 53 | 53 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_2 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_1 | 34 | 34 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_2 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_2 | 50 | 50 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_3 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_1 | 44 | 44 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_3 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_2 | 40 | 40 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_1 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_1 | 38.3720930232558 | ( 38.4) |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_1 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_2 | 61.6279069767442 | ( 61.6) |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_2 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_1 | 40.4761904761905 | ( 40.5) |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_2 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_2 | 59.5238095238095 | ( 59.5) |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_3 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_1 | 52.3809523809524 | ( 52.4) |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_3 | AnlsGrouping_02_Sex | AnlsGrouping_02_Sex_2 | 47.6190476190476 | ( 47.6) |
analysisId | operationId | operation_label | groupingId1 | grouping_name1 | groupId1 | group_name1 | groupingId2 | grouping_name2 | groupId2 | group_name2 | rawValue | formattedValue |
---|---|---|---|---|---|---|---|---|---|---|---|---|
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_1 | Placebo | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_1 | Male | 33 | 33 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_1 | Placebo | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_2 | Female | 53 | 53 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_2 | Xanomeline Low Dose | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_1 | Male | 34 | 34 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_2 | Xanomeline Low Dose | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_2 | Female | 50 | 50 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_3 | Xanomeline High Dose | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_1 | Male | 44 | 44 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_3 | Xanomeline High Dose | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_2 | Female | 40 | 40 |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_1 | Placebo | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_1 | Male | 38.3720930232558 | ( 38.4) |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_1 | Placebo | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_2 | Female | 61.6279069767442 | ( 61.6) |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_2 | Xanomeline Low Dose | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_1 | Male | 40.4761904761905 | ( 40.5) |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_2 | Xanomeline Low Dose | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_2 | Female | 59.5238095238095 | ( 59.5) |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_3 | Xanomeline High Dose | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_1 | Male | 52.3809523809524 | ( 52.4) |
An03_03_Sex_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_3 | Xanomeline High Dose | AnlsGrouping_02_Sex | Sex | AnlsGrouping_02_Sex_2 | Female | 47.6190476190476 | ( 47.6) |
Example
Lines 1-29: | Show the definition of the 3 grouping factors referenced by the analysis.
|
Lines 31-44: | Show the definition of the method referenced by the analysis, "Summary by group of a categorical variable", which has 2 operations:
|
Lines 46-61: | Show the definition of the analysis:
|
Lines 62-183 | Show a list of a subset of the results for the analysis. Each entry in the list (starting with the operationId attribute preceded by a hyphen) represents an instance of the OperationResult class and contains:
|
analysisGroupings: - id: AnlsGrouping_01_Trt name: Treatment groupingDataset: ADSL groupingVariable: TRT01A dataDriven: false groups: - id: AnlsGrouping_01_Trt_1 name: Placebo order: 1 ... - id: AnlsGrouping_01_Trt_2 name: Xanomeline Low Dose order: 2 ... - id: AnlsGrouping_01_Trt_3 name: Xanomeline High Dose order: 3 ... - id: AnlsGrouping_06_Soc name: System Organ Class groupingDataset: ADAE groupingVariable: AESOC dataDriven: true - id: AnlsGrouping_07_Pt name: Preferred Term groupingDataset: ADAE groupingVariable: AEDECOD dataDriven: true methods: - id: Mth01_CatVar_Summ_ByGrp name: Summary by group of a categorical variable operations: - id: Mth01_CatVar_Summ_ByGrp_1_n name: Count of subjects label: n order: 1 resultPattern: XXX - id: Mth01_CatVar_Summ_ByGrp_2_pct name: Percent of subjects label: '%' order: 2 resultPattern: ( XX.X) ... analyses: - id: An07_10_SocPt_Summ_ByTrt name: Summary of Subjects with TEAEs by Treatment, System Organ Class and Preferred Term version: 1 dataset: ADAE variable: USUBJID methodId: Mth01_CatVar_Summ_ByGrp orderedGroupings: - order: 1 resultsByGroup: true groupingId: AnlsGrouping_01_Trt - order: 2 resultsByGroup: true groupingId: AnlsGrouping_06_Soc - order: 3 resultsByGroup: true groupingId: AnlsGrouping_07_Pt results: - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_1 - groupingId: AnlsGrouping_06_Soc groupValue: CARDIAC DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: ATRIAL FIBRILLATION rawValue: '1' formattedValue: '1' - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_1 - groupingId: AnlsGrouping_06_Soc groupValue: CARDIAC DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: ATRIAL FIBRILLATION rawValue: '1.1628' formattedValue: ( 1.2) - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_1 - groupingId: AnlsGrouping_06_Soc groupValue: GASTROINTESTINAL DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: DIARRHOEA rawValue: '9' formattedValue: '9' - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_1 - groupingId: AnlsGrouping_06_Soc groupValue: GASTROINTESTINAL DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: DIARRHOEA rawValue: '10.4651' formattedValue: ( 10.5) - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_2 - groupingId: AnlsGrouping_06_Soc groupValue: CARDIAC DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: ATRIAL FIBRILLATION rawValue: '1' formattedValue: '1' - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_2 - groupingId: AnlsGrouping_06_Soc groupValue: CARDIAC DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: ATRIAL FIBRILLATION rawValue: '1.1905' formattedValue: ( 1.2) - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_2 - groupingId: AnlsGrouping_06_Soc groupValue: GASTROINTESTINAL DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: DIARRHOEA rawValue: '4' formattedValue: '4' - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_2 - groupingId: AnlsGrouping_06_Soc groupValue: GASTROINTESTINAL DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: DIARRHOEA rawValue: '4.7619' formattedValue: ( 4.8) - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_3 - groupingId: AnlsGrouping_06_Soc groupValue: CARDIAC DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: ATRIAL FIBRILLATION rawValue: '3' formattedValue: '3' - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_3 - groupingId: AnlsGrouping_06_Soc groupValue: CARDIAC DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: ATRIAL FIBRILLATION rawValue: '3.5714' formattedValue: ( 3.6) - operationId: Mth01_CatVar_Summ_ByGrp_1_n resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_3 - groupingId: AnlsGrouping_06_Soc groupValue: GASTROINTESTINAL DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: DIARRHOEA rawValue: '4' formattedValue: '4' - operationId: Mth01_CatVar_Summ_ByGrp_2_pct resultGroups: - groupingId: AnlsGrouping_01_Trt groupId: AnlsGrouping_01_Trt_3 - groupingId: AnlsGrouping_06_Soc groupValue: GASTROINTESTINAL DISORDERS - groupingId: AnlsGrouping_07_Pt groupValue: DIARRHOEA rawValue: '4.7619' formattedValue: ( 4.8) ... ...
The results for this analysis could be represented in tabular format as shown in the following table, where the value of the id attribute of the analysis is shown in the "analysisId" column and the groupingId and groupId or groupValue values from the 3 instances of the ResultGroup class found in the resultGroups attribute for each result are represented in separate pairs of columns ("groupingId1"/"groupId1", "groupingId2"/"groupValue2" and "groupingId3"/"groupValue3") so that each result is represented on a single row:
analysisId | operationId | groupingId1 | groupId1 | groupingId2 | groupValue2 | groupingId3 | groupValue3 | rawValue | formattedValue |
---|---|---|---|---|---|---|---|---|---|
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_1 | AnlsGrouping_06_Soc | CARDIAC DISORDERS | AnlsGrouping_07_Pt | ATRIAL FIBRILLATION | 1 | 1 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_1 | AnlsGrouping_06_Soc | CARDIAC DISORDERS | AnlsGrouping_07_Pt | ATRIAL FIBRILLATION | 1.1628 | ( 1.2) |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_1 | AnlsGrouping_06_Soc | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | DIARRHOEA | 9 | 9 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_1 | AnlsGrouping_06_Soc | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | DIARRHOEA | 10.4651 | ( 10.5) |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_2 | AnlsGrouping_06_Soc | CARDIAC DISORDERS | AnlsGrouping_07_Pt | ATRIAL FIBRILLATION | 1 | 1 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_2 | AnlsGrouping_06_Soc | CARDIAC DISORDERS | AnlsGrouping_07_Pt | ATRIAL FIBRILLATION | 1.1905 | ( 1.2) |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_2 | AnlsGrouping_06_Soc | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | DIARRHOEA | 4 | 4 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_2 | AnlsGrouping_06_Soc | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | DIARRHOEA | 4.7619 | ( 4.8) |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_3 | AnlsGrouping_06_Soc | CARDIAC DISORDERS | AnlsGrouping_07_Pt | ATRIAL FIBRILLATION | 3 | 3 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_3 | AnlsGrouping_06_Soc | CARDIAC DISORDERS | AnlsGrouping_07_Pt | ATRIAL FIBRILLATION | 3.5714 | ( 3.6) |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_3 | AnlsGrouping_06_Soc | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | DIARRHOEA | 4 | 4 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | AnlsGrouping_01_Trt | AnlsGrouping_01_Trt_3 | AnlsGrouping_06_Soc | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | DIARRHOEA | 4.7619 | ( 4.8) |
analysisId | operationId | operation_label | groupingId1 | grouping_name1 | groupId1 | group_name1 | groupingId2 | grouping_name2 | groupValue2 | groupingId3 | grouping_name3 | groupValue3 | rawValue | formattedValue |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_1 | Placebo | AnlsGrouping_06_Soc | System Organ Class | CARDIAC DISORDERS | AnlsGrouping_07_Pt | Preferred Term | ATRIAL FIBRILLATION | 1 | 1 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_1 | Placebo | AnlsGrouping_06_Soc | System Organ Class | CARDIAC DISORDERS | AnlsGrouping_07_Pt | Preferred Term | ATRIAL FIBRILLATION | 1.1628 | ( 1.2) |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_1 | Placebo | AnlsGrouping_06_Soc | System Organ Class | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | Preferred Term | DIARRHOEA | 9 | 9 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_1 | Placebo | AnlsGrouping_06_Soc | System Organ Class | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | Preferred Term | DIARRHOEA | 10.4651 | ( 10.5) |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_2 | Xanomeline Low Dose | AnlsGrouping_06_Soc | System Organ Class | CARDIAC DISORDERS | AnlsGrouping_07_Pt | Preferred Term | ATRIAL FIBRILLATION | 1 | 1 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_2 | Xanomeline Low Dose | AnlsGrouping_06_Soc | System Organ Class | CARDIAC DISORDERS | AnlsGrouping_07_Pt | Preferred Term | ATRIAL FIBRILLATION | 1.1905 | ( 1.2) |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_2 | Xanomeline Low Dose | AnlsGrouping_06_Soc | System Organ Class | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | Preferred Term | DIARRHOEA | 4 | 4 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_2 | Xanomeline Low Dose | AnlsGrouping_06_Soc | System Organ Class | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | Preferred Term | DIARRHOEA | 4.7619 | ( 4.8) |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_3 | Xanomeline High Dose | AnlsGrouping_06_Soc | System Organ Class | CARDIAC DISORDERS | AnlsGrouping_07_Pt | Preferred Term | ATRIAL FIBRILLATION | 3 | 3 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_3 | Xanomeline High Dose | AnlsGrouping_06_Soc | System Organ Class | CARDIAC DISORDERS | AnlsGrouping_07_Pt | Preferred Term | ATRIAL FIBRILLATION | 3.5714 | ( 3.6) |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_1_n | n | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_3 | Xanomeline High Dose | AnlsGrouping_06_Soc | System Organ Class | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | Preferred Term | DIARRHOEA | 4 | 4 |
An07_10_SocPt_Summ_ByTrt | Mth01_CatVar_Summ_ByGrp_2_pct | % | AnlsGrouping_01_Trt | Treatment | AnlsGrouping_01_Trt_3 | Xanomeline High Dose | AnlsGrouping_06_Soc | System Organ Class | GASTROINTESTINAL DISORDERS | AnlsGrouping_07_Pt | Preferred Term | DIARRHOEA | 4.7619 | ( 4.8) |
Example
Lines 1-19: | Show the definition of the single grouping factor referenced by the analysis: the "Treatment" grouping factor, which has 3 groups: "Placebo", "Xanomeline Low Dose", and "Xanomeline High Dose". This grouping factor is not data-driven (dataDriven = false on line 6). |
Lines 21-29: | Show the definition of the method referenced by the analysis, "Analysis of variance group comparison for a continuous variable", which has a single operation ("P-value"). |
Lines 31-40: | Show the definition of the analysis:
|
Lines 41-46 | Show the single result for the analysis, represented as an instance of the OperationResult class containing:
|
analysisGroupings: - id: AnlsGrouping_01_Trt name: Treatment groupingDataset: ADSL groupingVariable: TRT01A dataDriven: false groups: - id: AnlsGrouping_01_Trt_1 name: Placebo order: 1 ... - id: AnlsGrouping_01_Trt_2 name: Xanomeline Low Dose order: 2 ... - id: AnlsGrouping_01_Trt_3 name: Xanomeline High Dose order: 3 ... methods: - id: Mth04_ContVar_Comp_Anova name: Analysis of variance group comparison for a continuous variable operations: - id: Mth04_ContVar_Comp_Anova_1_pval name: P-value label: p-value order: 1 resultPattern: X.XXXX ... analyses: - id: An03_01_Age_Comp_ByTrt name: Comparison of Age by Treatment version: 1 dataset: ADSL variable: AGE methodId: Mth04_ContVar_Comp_Anova orderedGroupings: - order: 1 resultsByGroup: false groupingId: AnlsGrouping_01_Trt results: - operationId: Mth04_ContVar_Comp_Anova_1_pval resultGroups: - groupingId: AnlsGrouping_01_Trt rawValue: '0.5934357753' formattedValue: '0.5934' ... ...
The result for this analysis could be represented in tabular format as shown in the following table where the value of the id attribute of the analysis is shown in the "analysisId" column:
analysisId | operationId | groupingId | rawValue | formattedValue |
---|---|---|---|---|
An03_01_Age_Comp_ByTrt | Mth04_ContVar_Comp_Anova_1_pval | AnlsGrouping_01_Trt | 0.5934357753 | 0.5934 |
analysisId | operationId | operation_label | groupingId | grouping_name | rawValue | formattedValue |
---|---|---|---|---|---|---|
An03_01_Age_Comp_ByTrt | Mth04_ContVar_Comp_Anova_1_pval | p-value | AnlsGrouping_01_Trt | Treatment | 0.5934357753 | 0.5934 |