-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspec.example.procedure.json
47 lines (47 loc) · 1.05 KB
/
spec.example.procedure.json
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
{
"real_procedure": [
{
"name": "profit-margin",
"reference": "profit-margin"
}
],
"procedure": [
{
"step-name": "linear-regression",
"procedure-name": "linear-regression.py",
"entrypoint": "LinearRegression",
"arguments": {
"data": {
"value": "real_procedure.profit-margin",
"type": "string"
},
"time_column": {
"value": "time",
"type": "string"
},
"metrics": {
"value": ["profit", "margin"]
},
"days": {
"value": 100
},
"group_by": {
"value": [
"bin"
],
"type": [
"string"
]
}
}
}
],
"arguments": {
"real_procedure.profit-margin.data.product-profitability.select": "bin",
"real_procedure.profit-margin.procedure.series.group_by": "bin",
"real_procedure.profit-margin.procedure.profit.group_by": "bin",
"real_procedure.profit-margin.procedure.margin.group_by": "bin",
"real_procedure.profit-margin.procedure.merge.group_by": "bin",
"procedure.linear-regression.group_by": "bin"
}
}