-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmttr.json
More file actions
executable file
·128 lines (128 loc) · 4.19 KB
/
mttr.json
File metadata and controls
executable file
·128 lines (128 loc) · 4.19 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
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"title": "Mean Time To Restore: 3 dias 4 horas 38 min",
"height": 400,
"width": 550,
"layer": [
{
"mark": {"type":"bar", "color":"skyblue"},
"data": {
"values": [
{"period": "8 Julio - 14 Julio", "count": 17.99},
{"period": "15 Julio - 21 Julio", "count": 72.98},
{"period": "22 Julio - 28 Julio", "count": 111.47},
{"period": "5 Agosto - 11 Agosto", "count": 62.81},
{"period": "12 Agosto - 18 Agosto", "count": 32.05},
{"period": "19 Agosto - 25 Agosto", "count": 304.52},
{"period": "26 Agosto - 1 Septiembre", "count": 88},
{"period": "2 Septiembre - 8 Septiembre", "count": 33.72},
{"period": "9 Septiembre - 15 Septiembre", "count": 47.84},
{"period": "16 Septiembre - 22 Septiembre", "count": 71.41},
{"period": "23 Septiembre - 29 Septiembre", "count": 59.88},
{"period": "30 Septiembre - 6 Octubre", "count": 60.62},
{"period": "7 Octubre - 13 Octubre", "count": 57.92}
]
},
"encoding": {
"x": {
"field": "period",
"type": "nominal",
"title": "Período",
"sort": {
"order": null
}
},
"y": {
"field": "count",
"type": "quantitative",
"title": "Horas",
"scale": {
"domain": [0,400]
}
}
}
},
{
"mark": {
"type": "line",
"color":"rebeccapurple",
"strokeDash": [8, 1],
"point": true,
"interpolate": "monotone"
},
"data": {
"values": [
{"period": "8 Julio - 14 Julio", "count": 17.99},
{"period": "15 Julio - 21 Julio", "count": 72.98},
{"period": "22 Julio - 28 Julio", "count": 111.47},
{"period": "5 Agosto - 11 Agosto", "count": 62.81},
{"period": "12 Agosto - 18 Agosto", "count": 32.05},
{"period": "19 Agosto - 25 Agosto", "count": 304.52},
{"period": "26 Agosto - 1 Septiembre", "count": 88},
{"period": "2 Septiembre - 8 Septiembre", "count": 33.72},
{"period": "9 Septiembre - 15 Septiembre", "count": 47.84},
{"period": "16 Septiembre - 22 Septiembre", "count": 71.41},
{"period": "23 Septiembre - 29 Septiembre", "count": 59.88},
{"period": "30 Septiembre - 6 Octubre", "count": 60.62},
{"period": "7 Octubre - 13 Octubre", "count": 57.92}
]
},
"encoding": {
"x": {
"field": "period",
"type": "nominal",
"title": "Período",
"sort": {
"order": null
}
},
"y": {
"field": "count",
"type": "quantitative",
"title": "Horas",
"scale": {
"domain": [0,400]
}
}
}
},
{
"mark": {"type": "line", "strokeDash": [6, 3], "color":"violet"},
"data": {
"values": [
{"period": "8 Julio - 14 Julio", "count": 1},
{"period": "15 Julio - 21 Julio", "count": 1},
{"period": "22 Julio - 28 Julio", "count": 1},
{"period": "5 Agosto - 11 Agosto", "count": 1},
{"period": "12 Agosto - 18 Agosto", "count": 1},
{"period": "19 Agosto - 25 Agosto", "count": 1},
{"period": "26 Agosto - 1 Septiembre", "count": 1},
{"period": "2 Septiembre - 8 Septiembre", "count": 1},
{"period": "9 Septiembre - 15 Septiembre", "count": 1},
{"period": "16 Septiembre - 22 Septiembre", "count": 1},
{"period": "23 Septiembre - 29 Septiembre", "count": 1},
{"period": "30 Septiembre - 6 Octubre", "count": 1},
{"period": "7 Octubre - 13 Octubre", "count": 1}
]
},
"encoding": {
"x": {
"field": "period",
"type": "nominal",
"title": "Período",
"sort": {
"order": null
}
},
"y": {
"field": "count",
"type": "quantitative",
"title": "Horas",
"scale": {
"domain": [0,400]
}
}
}
}
]
}