-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoperator.json
More file actions
95 lines (95 loc) · 2.39 KB
/
operator.json
File metadata and controls
95 lines (95 loc) · 2.39 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
{
"name": "Standard Deviation",
"description": "Computes the standard deviantion (SD) of a distribution, a measure of dispersion.",
"tags": [
"descriptive statistics"
],
"authors": [
"tercen"
],
"urls": [
"https://github.com/tercen/sd_operator"
],
"properties": [],
"operatorSpec": {
"kind": "OperatorSpec",
"ontologyUri": "https://tercen.com/_ontology/tercen",
"ontologyVersion": "0.0.1",
"inputSpecs": [
{
"kind": "CrosstabSpec",
"metaFactors": [
{
"kind": "MetaFactor",
"name": "Row",
"type": "",
"description": "Optional row stratification factor.",
"ontologyMapping": "variable",
"crosstabMapping": "row",
"cardinality": "0..n",
"factors": []
},
{
"kind": "MetaFactor",
"name": "Column",
"type": "",
"description": "Optional column stratification factor.",
"ontologyMapping": "observation",
"crosstabMapping": "column",
"cardinality": "0..n",
"factors": []
}
],
"axis": [
{
"kind": "AxisSpec",
"metaFactors": [
{
"kind": "MetaFactor",
"name": "Measurement",
"type": "double",
"description": "Input data for standard deviation calculation.",
"ontologyMapping": "measurement",
"crosstabMapping": "y",
"cardinality": "1",
"factors": []
}
]
}
]
}
],
"outputSpecsV2": [
{
"kind": "OperatorJoinSpec",
"joinOperators": [
{
"kind": "JoinOperator",
"joinType": "left",
"leftPair": {
"kind": "ColumnPair",
"lColumns": [
"Row",
"Column"
],
"rColumns": [
"Row",
"Column"
]
},
"rightRelation": {
"kind": "TableRelation",
"attributes": [
{
"kind": "Attribute",
"name": "sd",
"type": "double"
}
]
}
}
]
}
]
}
}