-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoperator.json
More file actions
158 lines (158 loc) · 4.35 KB
/
operator.json
File metadata and controls
158 lines (158 loc) · 4.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "ANOVA",
"description": "Tests for significant differences among group means using the Analysis Of Variance.",
"tags": [
"statistical testing",
"linear model"
],
"authors": [
"tercen"
],
"urls": [
"https://github.com/tercen/anova_operator"
],
"container": "ghcr.io/tercen/anova_operator:1.1.2",
"properties": [
{
"kind": "EnumeratedProperty",
"name": "method",
"defaultValue": "one.way",
"values": [
"one.way",
"two.way"
],
"description": "Whether to consider interactions between effects (two.way) or not (one.way) in the model."
}
],
"operatorSpec": {
"kind": "OperatorSpec",
"ontologyUri": "https://tercen.com/_ontology/tercen",
"ontologyVersion": "0.0.1",
"inputSpecs": [
{
"kind": "CrosstabSpec",
"metaFactors": [
{
"kind": "MetaFactor",
"name": "Column Stratification",
"type": "",
"description": "Optional column stratification factor",
"ontologyMapping": "observation",
"crosstabMapping": "column",
"cardinality": "0..n",
"factors": []
},
{
"kind": "MetaFactor",
"name": "Row Stratification",
"type": "",
"description": "Optional row stratification factor",
"ontologyMapping": "variable",
"crosstabMapping": "row",
"cardinality": "0..n",
"factors": []
}
],
"axis": [
{
"kind": "AxisSpec",
"metaFactors": [
{
"kind": "MetaFactor",
"name": "Measurement",
"type": "double",
"description": "Measurement value",
"ontologyMapping": "measurement",
"crosstabMapping": "y",
"cardinality": "1",
"factors": []
},
{
"kind": "MetaFactor",
"name": "Group",
"type": "",
"description": "Group factor to compare",
"ontologyMapping": "group",
"crosstabMapping": "color",
"cardinality": "1..n",
"factors": []
},
{
"kind": "MetaFactor",
"name": "Pairing",
"type": "",
"description": "Optional pairing/blocking factor for repeated measures",
"ontologyMapping": "pairing",
"crosstabMapping": "label",
"cardinality": "0..1",
"factors": []
}
]
}
]
}
],
"outputSpecsV2": [
{
"kind": "OperatorJoinSpec",
"joinOperators": [
{
"kind": "JoinOperator",
"joinType": "left",
"leftPair": {
"kind": "ColumnPair",
"lColumns": [
"Row Stratification",
"Column Stratification"
],
"rColumns": [
"Row Stratification",
"Column Stratification"
]
},
"rightRelation": {
"kind": "TableRelation",
"attributes": [
{
"kind": "Attribute",
"name": "Effect",
"type": "string"
},
{
"kind": "Attribute",
"name": "DFn",
"type": "double"
},
{
"kind": "Attribute",
"name": "DFd",
"type": "double"
},
{
"kind": "Attribute",
"name": "F",
"type": "double"
},
{
"kind": "Attribute",
"name": "p",
"type": "double"
},
{
"kind": "Attribute",
"name": "significance",
"type": "string"
},
{
"kind": "Attribute",
"name": "ges",
"type": "double"
}
]
}
}
]
}
]
}
}