...
Xfancy |
---|
|
Lines 1-1819: | 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 36). | Lines 1921-2729: | 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 2931-3840: | Show the definition of the analysis: - Lines 3234-3335: Show that this is an analysis of the AGE variable in the ADSL dataset.
- Line 3436: Shows the reference to the "Analysis of variance group comparison for a continuous variable" method.
- Lines 3537-3840: Show the reference to the single grouping factor, which is marked as not producing a result for each group in the grouping factor (resultsByGroup = false, shown on line 3739).
| Lines 4041-4446 | Show the single result for the analysis, represented as an instance of the OperationResult class containing: - The identifier value of the statistical operation performed, which is in the operationId attribute.
- In the resultGroups attribute, a reference to the only grouping factor group associated with the result (indicated by the value of the groupingId attribute). The association to the "Treatment" grouping factor can be used as an indication that this is a treatment-related result.
- The raw result value in the rawValue attribute, and
- In the formattedValue attribute, the result value formatted according to the pattern specified in the resultPattern attribute of the operation referenced by the operationId value. The specified pattern is shown on row 2628.
|
|
Code Block |
---|
title | YAML Example |
---|
linenumbers | true |
---|
|
analysisGroupings:
- id: AnlsGrouping_01_Trt
dataDrivenname: falseTreatment
labelgroupingDataset: TreatmentADSL
groupingVariable: TRT01A
dataDriven: false
groups:
- id: AnlsGrouping_01_Trt_1
labelname: Placebo
order: 1
...
- id: AnlsGrouping_01_Trt_2
labelname: Xanomeline Low Dose
order: 2
...
- id: AnlsGrouping_01_Trt_3
labelname: 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'
...
... |
...
Alternatively, to aid readability, each of the identifier values could be used to retrieve and include the name or label (or any other descriptive information) from the definitions of the operation and grouping factor:
Dataset2 |
---|
analysisId | operationId | operation_label | groupingId | grouping_labelname | rawValue | formattedValue |
---|
An03_01_Age_Comp_ByTrt | Mth04_ContVar_Comp_Anova_1_pval | p-value | AnlsGrouping_01_Trt | Treatment | 0.5934357753 | 0.5934 |
|