-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCorrelationsGraph.html
204 lines (161 loc) · 70.5 KB
/
CorrelationsGraph.html
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vis-network@latest/styles/vis-network.css" type="text/css" />
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/vis-network@latest/dist/vis-network.min.js"> </script>
<center>
<h1></h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<style type="text/css">
#mynetwork {
width: 100%;
height: 100%;
background-color: #f2ece6;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 100%;
height: 1000px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<div id = "mynetwork"></div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var network;
var container;
var options, data;
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"color": "#ffa44a", "font": {"color": "black"}, "id": "1-sided", "label": "1-sided", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Core-jet", "label": "Core-jet", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "side", "label": "side", "shape": "dot", "size": 10, "value": 1336956.8890712473}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Bent tail", "label": "Bent tail", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "C-shaped", "label": "C-shaped", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Core-dominant", "label": "Core-dominant", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Double-double (DDRG)", "label": "Double-double (DDRG)", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Fanaroff and Riley Class 1 (FR I)", "label": "Fanaroff and Riley Class 1 (FR I)", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Fanaroff and Riley Class 2 (FR II)", "label": "Fanaroff and Riley Class 2 (FR II)", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Hybrid", "label": "Hybrid", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Narrow-angle tail (NAT)", "label": "Narrow-angle tail (NAT)", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "S-shaped", "label": "S-shaped", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Triple", "label": "Triple", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Wide-angle tail (WAT)", "label": "Wide-angle tail (WAT)", "shape": "dot", "size": 10}, {"color": "#834aff", "font": {"color": "black"}, "id": "bent", "label": "bent", "shape": "dot", "size": 10, "value": 14485534.752074301}, {"color": "#834aff", "font": {"color": "black"}, "id": "edge", "label": "edge", "shape": "dot", "size": 10, "value": 37571746.54370927}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "frame", "label": "frame", "shape": "dot", "size": 10, "value": 1215415.3537011337}, {"color": "#834aff", "font": {"color": "black"}, "id": "peak", "label": "peak", "shape": "dot", "size": 10, "value": 5584800.717460519}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "arc", "label": "arc", "shape": "dot", "size": 10, "value": 2048.4002145854793}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Classical double", "label": "Classical double", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Double", "label": "Double", "shape": "dot", "size": 10}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Single", "label": "Single", "shape": "dot", "size": 10}, {"color": "#834aff", "font": {"color": "black"}, "id": "double", "label": "double", "shape": "dot", "size": 10, "value": 60509673.52610925}, {"color": "#834aff", "font": {"color": "black"}, "id": "radio", "label": "radio", "shape": "dot", "size": 10, "value": 10883196.658207586}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Compact Symmetric Object (CSO)", "label": "Compact Symmetric Object (CSO)", "shape": "dot", "size": 10}, {"color": "#834aff", "font": {"color": "black"}, "id": "compact", "label": "compact", "shape": "dot", "size": 10, "value": 50007994.64967705}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "oblong", "label": "oblong", "shape": "dot", "size": 10, "value": 5313.022611848312}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Diffuse", "label": "Diffuse", "shape": "dot", "size": 10}, {"color": "#834aff", "font": {"color": "black"}, "id": "bridge", "label": "bridge", "shape": "dot", "size": 10, "value": 9893815.143825078}, {"color": "#834aff", "font": {"color": "black"}, "id": "lobe", "label": "lobe", "shape": "dot", "size": 10, "value": 4615537.783025221}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "bendy", "label": "bendy", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "curve", "label": "curve", "shape": "dot", "size": 10, "value": 7071.633096370106}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Fanaroff and Riley Class 0 (FR 0)", "label": "Fanaroff and Riley Class 0 (FR 0)", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "divert", "label": "divert", "shape": "dot", "size": 10, "value": 142.04293198443193}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "large", "label": "large", "shape": "dot", "size": 10, "value": 754677.3094865187}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "margin", "label": "margin", "shape": "dot", "size": 10, "value": 2153182.439418135}, {"color": "#834aff", "font": {"color": "black"}, "id": "diffuse", "label": "diffuse", "shape": "dot", "size": 10, "value": 23329098.573563192}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "complex", "label": "complex", "shape": "dot", "size": 10, "value": 1617717.8357762096}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "smear", "label": "smear", "shape": "dot", "size": 10, "value": 4390.927778387035}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "turbulent", "label": "turbulent", "shape": "dot", "size": 10, "value": 13780.61233982238}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Odd Radio Circle (ORC)", "label": "Odd Radio Circle (ORC)", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "anomalous", "label": "anomalous", "shape": "dot", "size": 10, "value": 3152474.409552093}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "radiate", "label": "radiate", "shape": "dot", "size": 10, "value": 207.96505671840686}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "unstructured", "label": "unstructured", "shape": "dot", "size": 10, "value": 189.05914247127893}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "bend", "label": "bend", "shape": "dot", "size": 10, "value": 164239.77066398552}, {"color": "#834aff", "font": {"color": "black"}, "id": "single", "label": "single", "shape": "dot", "size": 10, "value": 4195943.439113837}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "Star Forming Galaxy (SFG)", "label": "Star Forming Galaxy (SFG)", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "align", "label": "align", "shape": "dot", "size": 10, "value": 149308.882421805}, {"color": "#834aff", "font": {"color": "black"}, "id": "clear", "label": "clear", "shape": "dot", "size": 10, "value": 19280246.7550109}, {"color": "#834aff", "font": {"color": "black"}, "id": "disk", "label": "disk", "shape": "dot", "size": 10, "value": 66560640.87872017}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "follow", "label": "follow", "shape": "dot", "size": 10, "value": 1779489.6193538306}, {"color": "#834aff", "font": {"color": "black"}, "id": "overlap", "label": "overlap", "shape": "dot", "size": 10, "value": 7433369.754939952}, {"color": "#834aff", "font": {"color": "black"}, "id": "spiral", "label": "spiral", "shape": "dot", "size": 10, "value": 25662008.430919513}, {"color": "#834aff", "font": {"color": "black"}, "id": "trace", "label": "trace", "shape": "dot", "size": 10, "value": 73216704.9665922}, {"color": "#834aff", "font": {"color": "black"}, "id": "bright", "label": "bright", "shape": "dot", "size": 10, "value": 28228209.274011467}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "core", "label": "core", "shape": "dot", "size": 10, "value": 623700.2557739824}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "confused", "label": "confused", "shape": "dot", "size": 10, "value": 1271.8953713950725}, {"color": "#ffa44a", "font": {"color": "black"}, "id": "X-shaped", "label": "X-shaped", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "square", "label": "square", "shape": "dot", "size": 10, "value": 868.7216524793881}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": ")", "label": ")", "shape": "dot", "size": 10, "value": 3298.9690295920614}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "elliptical", "label": "elliptical", "shape": "dot", "size": 10, "value": 593.3485776104009}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "fall", "label": "fall", "shape": "dot", "size": 10, "value": 3991.7525258063947}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "?", "label": "?", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "resolve", "label": "resolve", "shape": "dot", "size": 10, "value": 123395.77059653304}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "ambiguous", "label": "ambiguous", "shape": "dot", "size": 10, "value": 652.683435371441}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "lobes", "label": "lobes", "shape": "dot", "size": 10, "value": 490.37072529785183}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "spot", "label": "spot", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "strange", "label": "strange", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "artefact", "label": "artefact", "shape": "dot", "size": 10, "value": 2999.0627541746007}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "dense", "label": "dense", "shape": "dot", "size": 10, "value": 29539.966406591193}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "offscreen", "label": "offscreen", "shape": "dot", "size": 10, "value": 16674.540931185085}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "shock", "label": "shock", "shape": "dot", "size": 10, "value": 2253.2402360440274}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "artifact", "label": "artifact", "shape": "dot", "size": 10, "value": 468595.23348909256}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "noise", "label": "noise", "shape": "dot", "size": 10, "value": 1957438.5812892138}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "associated", "label": "associated", "shape": "dot", "size": 10, "value": 112177.97326957548}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "hot", "label": "hot", "shape": "dot", "size": 10, "value": 2726.4206856132732}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "axis", "label": "axis", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "direction", "label": "direction", "shape": "dot", "size": 10, "value": 1538.9933993880381}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "map", "label": "map", "shape": "dot", "size": 10, "value": 4830.020556225739}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "possibility", "label": "possibility", "shape": "dot", "size": 10, "value": 26854.514915082902}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "black", "label": "black", "shape": "dot", "size": 10, "value": 129.1299381676654}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "long", "label": "long", "shape": "dot", "size": 10, "value": 76619.06513870326}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "object", "label": "object", "shape": "dot", "size": 10, "value": 1692.892739326842}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "blobby", "label": "blobby", "shape": "dot", "size": 10, "value": 2478.56425964843}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "interact", "label": "interact", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "remnant", "label": "remnant", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "bow", "label": "bow", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "multiple", "label": "multiple", "shape": "dot", "size": 10, "value": 8556.67604660783}, {"color": "#834aff", "font": {"color": "black"}, "id": "hourglass", "label": "hourglass", "shape": "dot", "size": 10, "value": 45461813.31788823}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "bulge", "label": "bulge", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "bump", "label": "bump", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "right", "label": "right", "shape": "dot", "size": 10, "value": 11388.935818035025}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "center", "label": "center", "shape": "dot", "size": 10, "value": 368.42278384511775}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "centre", "label": "centre", "shape": "dot", "size": 10, "value": 6428.75736033646}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "connected", "label": "connected", "shape": "dot", "size": 10, "value": 18341.995024303593}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "chaotic", "label": "chaotic", "shape": "dot", "size": 10, "value": 84280.9716525736}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "disperse", "label": "disperse", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "isolate", "label": "isolate", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "cluster", "label": "cluster", "shape": "dot", "size": 10, "value": 24413.19537734809}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "envelope", "label": "envelope", "shape": "dot", "size": 10, "value": 276.8014904921996}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "filament", "label": "filament", "shape": "dot", "size": 10, "value": 22193.813979407354}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "simple", "label": "simple", "shape": "dot", "size": 10, "value": 387268.78800751443}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "region", "label": "region", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "composite", "label": "composite", "shape": "dot", "size": 10, "value": 135735.34765618635}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "ring", "label": "ring", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "hotspot", "label": "hotspot", "shape": "dot", "size": 10, "value": 92709.06881783096}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "correlation", "label": "correlation", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "scale", "label": "scale", "shape": "dot", "size": 10, "value": 10353.578016395475}, {"color": "#834aff", "font": {"color": "black"}, "id": "counterpart", "label": "counterpart", "shape": "dot", "size": 10, "value": 41328921.198080204}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "cut", "label": "cut", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "image", "label": "image", "shape": "dot", "size": 10, "value": 5844.324873033144}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "cutout", "label": "cutout", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "fertilize", "label": "fertilize", "shape": "dot", "size": 10, "value": 334.92980349556154}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "unclear", "label": "unclear", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "detach", "label": "detach", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "noir", "label": "noir", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "tadpole", "label": "tadpole", "shape": "dot", "size": 10, "value": 304.48163954141955}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "detection", "label": "detection", "shape": "dot", "size": 10, "value": 32493.963047250316}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "difficult", "label": "difficult", "shape": "dot", "size": 10, "value": 106.7189571633598}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "distort", "label": "distort", "shape": "dot", "size": 10, "value": 686070.2813513806}, {"color": "#834aff", "font": {"color": "black"}, "id": "extend", "label": "extend", "shape": "dot", "size": 10, "value": 34156133.221553884}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "diffusion", "label": "diffusion", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "dim", "label": "dim", "shape": "dot", "size": 10, "value": 171.87194770116267}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "particular", "label": "particular", "shape": "dot", "size": 10, "value": 789.7469567994436}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "morphology", "label": "morphology", "shape": "dot", "size": 10, "value": 3628.8659325512676}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "patchy", "label": "patchy", "shape": "dot", "size": 10, "value": 1862.1820132595262}, {"color": "#834aff", "font": {"color": "black"}, "id": "straight", "label": "straight", "shape": "dot", "size": 10, "value": 8176706.730433947}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "doulbe", "label": "doulbe", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "downward", "label": "downward", "shape": "dot", "size": 10, "value": 101979.97569961406}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "galaxy", "label": "galaxy", "shape": "dot", "size": 10, "value": 15158.67357380462}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "unrelated", "label": "unrelated", "shape": "dot", "size": 10, "value": 12527.829399838527}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "drag", "label": "drag", "shape": "dot", "size": 10, "value": 1399.0849085345799}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "merger", "label": "merger", "shape": "dot", "size": 10, "value": 57565.037669949845}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "irregular", "label": "irregular", "shape": "dot", "size": 10, "value": 35743.35935197535}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "spread", "label": "spread", "shape": "dot", "size": 10, "value": 47574.4112974792}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "visible", "label": "visible", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "field", "label": "field", "shape": "dot", "size": 10, "value": 7778.796406007117}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "low", "label": "low", "shape": "dot", "size": 10, "value": 180663.7477303841}, {"color": "#834aff", "font": {"color": "black"}, "id": "plume", "label": "plume", "shape": "dot", "size": 10, "value": 5077091.561327743}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "screen", "label": "screen", "shape": "dot", "size": 10, "value": 913159.5444786879}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "jet", "label": "jet", "shape": "dot", "size": 10, "value": 198730.1225034225}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "tendril", "label": "tendril", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "wide", "label": "wide", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "lens", "label": "lens", "shape": "dot", "size": 10, "value": 717.9517789085851}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "private.", "label": "private.", "shape": "dot", "size": 10, "value": 52331.852427227124}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "messy", "label": "messy", "shape": "dot", "size": 10, "value": 20176.194526733954}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "match", "label": "match", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "strong", "label": "strong", "shape": "dot", "size": 10, "value": 43249.464815890184}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "space", "label": "space", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "unusual", "label": "unusual", "shape": "dot", "size": 10, "value": 1051.1531995000598}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "structure", "label": "structure", "shape": "dot", "size": 10, "value": 69653.69558063932}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "unknown", "label": "unknown", "shape": "dot", "size": 10, "value": 63321.54143694483}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "superimpose", "label": "superimpose", "shape": "dot", "size": 10, "value": 1470652.577978372}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "shape", "label": "shape", "shape": "dot", "size": 10, "value": 830145.0404351708}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "signal", "label": "signal", "shape": "dot", "size": 10}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "slightly", "label": "slightly", "shape": "dot", "size": 10, "value": 39317.695287172886}, {"color": "#4aa7ff", "font": {"color": "black"}, "id": "western", "label": "western", "shape": "dot", "size": 10, "value": 240463.44822914127}]);
edges = new vis.DataSet([{"color": "#255280", "from": "1-sided", "label": 0.7883957890828963, "to": "Core-jet", "value": 62.15679202436427, "weight": 0.7883957890828963}, {"color": "#255280", "from": "1-sided", "label": 0.30817496906026814, "to": "side", "value": 9.497181155529724, "weight": 0.30817496906026814}, {"color": "#255280", "from": "Bent tail", "label": 0.620479832724312, "to": "C-shaped", "value": 38.49952228175901, "weight": 0.620479832724312}, {"color": "#255280", "from": "Bent tail", "label": 0.48517426082259557, "to": "Core-dominant", "value": 23.5394063364752, "weight": 0.48517426082259557}, {"color": "#255280", "from": "Bent tail", "label": 0.3723054517452524, "to": "Double-double (DDRG)", "value": 13.861134939923648, "weight": 0.3723054517452524}, {"color": "#255280", "from": "Bent tail", "label": 0.47825595645228164, "to": "Fanaroff and Riley Class 1 (FR I)", "value": 22.872875988208673, "weight": 0.47825595645228164}, {"color": "#255280", "from": "Bent tail", "label": 0.4212710649272475, "to": "Fanaroff and Riley Class 2 (FR II)", "value": 17.74693101449372, "weight": 0.4212710649272475}, {"color": "#255280", "from": "Bent tail", "label": 0.545672562914889, "to": "Hybrid", "value": 29.775854591810347, "weight": 0.545672562914889}, {"color": "#255280", "from": "Bent tail", "label": 0.3223010574768969, "to": "Narrow-angle tail (NAT)", "value": 10.387797165072602, "weight": 0.3223010574768969}, {"color": "#255280", "from": "Bent tail", "label": 0.5606605379180548, "to": "S-shaped", "value": 31.43402387785626, "weight": 0.5606605379180548}, {"color": "#255280", "from": "Bent tail", "label": 0.4557976166975253, "to": "Triple", "value": 20.77514673871442, "weight": 0.4557976166975253}, {"color": "#255280", "from": "Bent tail", "label": 0.5831851100515373, "to": "Wide-angle tail (WAT)", "value": 34.010487258582366, "weight": 0.5831851100515373}, {"color": "#255280", "from": "Bent tail", "label": 0.643062281263627, "to": "bent", "value": 41.35290975839801, "weight": 0.643062281263627}, {"color": "#255280", "from": "Bent tail", "label": 0.34574720799393677, "to": "edge", "value": 11.954113183560256, "weight": 0.34574720799393677}, {"color": "#255280", "from": "Bent tail", "label": 0.32906497628810766, "to": "frame", "value": 10.828375861949285, "weight": 0.32906497628810766}, {"color": "#255280", "from": "Bent tail", "label": 0.3165184995744416, "to": "peak", "value": 10.01839605728558, "weight": 0.3165184995744416}, {"color": "#255280", "from": "C-shaped", "label": 0.48832430082247186, "to": "Core-dominant", "value": 23.846062277375598, "weight": 0.48832430082247186}, {"color": "#255280", "from": "C-shaped", "label": 0.34759036776656266, "to": "Double-double (DDRG)", "value": 12.081906376409428, "weight": 0.34759036776656266}, {"color": "#255280", "from": "C-shaped", "label": 0.362440632776488, "to": "Fanaroff and Riley Class 1 (FR I)", "value": 13.136321228742103, "weight": 0.362440632776488}, {"color": "#255280", "from": "C-shaped", "label": 0.3840944948020162, "to": "Fanaroff and Riley Class 2 (FR II)", "value": 14.752858093721605, "weight": 0.3840944948020162}, {"color": "#255280", "from": "C-shaped", "label": 0.5008829525766212, "to": "Hybrid", "value": 25.088373218187378, "weight": 0.5008829525766212}, {"color": "#255280", "from": "C-shaped", "label": 0.33431318824240025, "to": "Narrow-angle tail (NAT)", "value": 11.176530783279855, "weight": 0.33431318824240025}, {"color": "#255280", "from": "C-shaped", "label": 0.47733932684471475, "to": "Triple", "value": 22.78528329525654, "weight": 0.47733932684471475}, {"color": "#255280", "from": "C-shaped", "label": 0.567803220547687, "to": "Wide-angle tail (WAT)", "value": 32.240049726432524, "weight": 0.567803220547687}, {"color": "#255280", "from": "C-shaped", "label": 0.37662213601316585, "to": "arc", "value": 14.184423333511962, "weight": 0.37662213601316585}, {"color": "#255280", "from": "C-shaped", "label": 0.4906895125013046, "to": "bent", "value": 24.077619767876797, "weight": 0.4906895125013046}, {"color": "#255280", "from": "Classical double", "label": 0.4017146481503792, "to": "Double", "value": 16.137465853858295, "weight": 0.4017146481503792}, {"color": "#255280", "from": "Classical double", "label": 0.6289951102033198, "to": "Fanaroff and Riley Class 2 (FR II)", "value": 39.56348486596864, "weight": 0.6289951102033198}, {"color": "#99632c", "from": "Classical double", "label": -0.3184284763750408, "to": "Single", "value": 10.139669456652992, "weight": -0.3184284763750408}, {"color": "#255280", "from": "Classical double", "label": 0.3599236663505517, "to": "Triple", "value": 12.954504559922325, "weight": 0.3599236663505517}, {"color": "#255280", "from": "Classical double", "label": 0.4736030006395142, "to": "double", "value": 22.42998022147517, "weight": 0.4736030006395142}, {"color": "#255280", "from": "Classical double", "label": 0.41926848396081284, "to": "edge", "value": 17.578606164279837, "weight": 0.41926848396081284}, {"color": "#255280", "from": "Classical double", "label": 0.32877669921893193, "to": "radio", "value": 10.809411794929604, "weight": 0.32877669921893193}, {"color": "#255280", "from": "Compact Symmetric Object (CSO)", "label": 0.31912083571571764, "to": "compact", "value": 10.183810778789805, "weight": 0.31912083571571764}, {"color": "#255280", "from": "Compact Symmetric Object (CSO)", "label": 0.3048543614842839, "to": "oblong", "value": 9.293618171599045, "weight": 0.3048543614842839}, {"color": "#255280", "from": "Core-dominant", "label": 0.4007654184480743, "to": "Fanaroff and Riley Class 1 (FR I)", "value": 16.061292062386006, "weight": 0.4007654184480743}, {"color": "#255280", "from": "Core-dominant", "label": 0.3168786435709137, "to": "Fanaroff and Riley Class 2 (FR II)", "value": 10.041207475134218, "weight": 0.3168786435709137}, {"color": "#255280", "from": "Core-dominant", "label": 0.38890528574789585, "to": "Hybrid", "value": 15.124732128265252, "weight": 0.38890528574789585}, {"color": "#255280", "from": "Core-dominant", "label": 0.45998443886172224, "to": "Triple", "value": 21.158568399493348, "weight": 0.45998443886172224}, {"color": "#255280", "from": "Core-dominant", "label": 0.5477806927394865, "to": "Wide-angle tail (WAT)", "value": 30.00636873381517, "weight": 0.5477806927394865}, {"color": "#255280", "from": "Core-dominant", "label": 0.3619897387362578, "to": "bent", "value": 13.103657095034416, "weight": 0.3619897387362578}, {"color": "#255280", "from": "Diffuse", "label": 0.31003373767741904, "to": "Single", "value": 9.612091849823068, "weight": 0.31003373767741904}, {"color": "#255280", "from": "Double", "label": 0.49732813306822005, "to": "Fanaroff and Riley Class 2 (FR II)", "value": 24.733527194112117, "weight": 0.49732813306822005}, {"color": "#99632c", "from": "Double", "label": -0.40817640057668153, "to": "Single", "value": 16.660797398773557, "weight": -0.40817640057668153}, {"color": "#255280", "from": "Double", "label": 0.39199180920272697, "to": "bridge", "value": 15.36575784820271, "weight": 0.39199180920272697}, {"color": "#99632c", "from": "Double", "label": -0.31471684665901356, "to": "compact", "value": 9.904669357099305, "weight": -0.31471684665901356}, {"color": "#255280", "from": "Double", "label": 0.52940487638313, "to": "double", "value": 28.02695231382372, "weight": 0.52940487638313}, {"color": "#255280", "from": "Double", "label": 0.39820422122520055, "to": "edge", "value": 15.856660180156846, "weight": 0.39820422122520055}, {"color": "#255280", "from": "Double", "label": 0.3378273175672635, "to": "lobe", "value": 11.412729649469268, "weight": 0.3378273175672635}, {"color": "#255280", "from": "Double", "label": 0.30376642432954604, "to": "peak", "value": 9.227404054995782, "weight": 0.30376642432954604}, {"color": "#255280", "from": "Double-double (DDRG)", "label": 0.3846423962208175, "to": "Fanaroff and Riley Class 1 (FR I)", "value": 14.794977297049233, "weight": 0.3846423962208175}, {"color": "#255280", "from": "Double-double (DDRG)", "label": 0.42925818186931014, "to": "Fanaroff and Riley Class 2 (FR II)", "value": 18.426258670174576, "weight": 0.42925818186931014}, {"color": "#255280", "from": "Double-double (DDRG)", "label": 0.5369720727638975, "to": "Hybrid", "value": 28.83390069283564, "weight": 0.5369720727638975}, {"color": "#255280", "from": "Double-double (DDRG)", "label": 0.4576305846216235, "to": "S-shaped", "value": 20.94257519811289, "weight": 0.4576305846216235}, {"color": "#255280", "from": "Double-double (DDRG)", "label": 0.3840023291685723, "to": "Triple", "value": 14.745778880688857, "weight": 0.3840023291685723}, {"color": "#255280", "from": "Double-double (DDRG)", "label": 0.31082819326161115, "to": "arc", "value": 9.66141657262775, "weight": 0.31082819326161115}, {"color": "#255280", "from": "Double-double (DDRG)", "label": 0.40307397964892755, "to": "bendy", "value": 16.246863307002407, "weight": 0.40307397964892755}, {"color": "#255280", "from": "Double-double (DDRG)", "label": 0.30964217473137745, "to": "curve", "value": 9.587827637237687, "weight": 0.30964217473137745}, {"color": "#255280", "from": "Double-double (DDRG)", "label": 0.44879216897746604, "to": "frame", "value": 20.141441093549844, "weight": 0.44879216897746604}, {"color": "#255280", "from": "Fanaroff and Riley Class 0 (FR 0)", "label": 0.34444252614181287, "to": "divert", "value": 11.864065381495344, "weight": 0.34444252614181287}, {"color": "#255280", "from": "Fanaroff and Riley Class 1 (FR I)", "label": 0.5192077805955791, "to": "Hybrid", "value": 26.957671943098703, "weight": 0.5192077805955791}, {"color": "#99632c", "from": "Fanaroff and Riley Class 1 (FR I)", "label": -0.33354047960688477, "to": "Single", "value": 11.124925153639072, "weight": -0.33354047960688477}, {"color": "#255280", "from": "Fanaroff and Riley Class 1 (FR I)", "label": 0.4383631527374455, "to": "Triple", "value": 19.2162253677913, "weight": 0.4383631527374455}, {"color": "#255280", "from": "Fanaroff and Riley Class 1 (FR I)", "label": 0.3859978164559985, "to": "Wide-angle tail (WAT)", "value": 14.899431430879872, "weight": 0.3859978164559985}, {"color": "#255280", "from": "Fanaroff and Riley Class 1 (FR I)", "label": 0.3862006993875224, "to": "bent", "value": 14.915098020741144, "weight": 0.3862006993875224}, {"color": "#255280", "from": "Fanaroff and Riley Class 1 (FR I)", "label": 0.3045184749104438, "to": "frame", "value": 9.27315015617826, "weight": 0.3045184749104438}, {"color": "#255280", "from": "Fanaroff and Riley Class 1 (FR I)", "label": 0.31942678861550916, "to": "peak", "value": 10.203347328521717, "weight": 0.31942678861550916}, {"color": "#255280", "from": "Fanaroff and Riley Class 2 (FR II)", "label": 0.5089971198036776, "to": "Hybrid", "value": 25.90780679684393, "weight": 0.5089971198036776}, {"color": "#99632c", "from": "Fanaroff and Riley Class 2 (FR II)", "label": -0.41667572412682646, "to": "Single", "value": 17.36186590766152, "weight": -0.41667572412682646}, {"color": "#255280", "from": "Fanaroff and Riley Class 2 (FR II)", "label": 0.6558921901072886, "to": "Triple", "value": 43.01945650437356, "weight": 0.6558921901072886}, {"color": "#255280", "from": "Fanaroff and Riley Class 2 (FR II)", "label": 0.3585566093403359, "to": "Wide-angle tail (WAT)", "value": 12.856284210163826, "weight": 0.3585566093403359}, {"color": "#255280", "from": "Fanaroff and Riley Class 2 (FR II)", "label": 0.33496638372489584, "to": "bridge", "value": 11.220247822573416, "weight": 0.33496638372489584}, {"color": "#255280", "from": "Fanaroff and Riley Class 2 (FR II)", "label": 0.5145832425931541, "to": "double", "value": 26.479591355768488, "weight": 0.5145832425931541}, {"color": "#255280", "from": "Fanaroff and Riley Class 2 (FR II)", "label": 0.5684479618963413, "to": "edge", "value": 32.31330853841043, "weight": 0.5684479618963413}, {"color": "#255280", "from": "Fanaroff and Riley Class 2 (FR II)", "label": 0.3316022354149458, "to": "large", "value": 10.996004253218915, "weight": 0.3316022354149458}, {"color": "#255280", "from": "Fanaroff and Riley Class 2 (FR II)", "label": 0.33980565115803213, "to": "margin", "value": 11.546788055893423, "weight": 0.33980565115803213}, {"color": "#255280", "from": "Hybrid", "label": 0.3622663254980958, "to": "S-shaped", "value": 13.12368905898923, "weight": 0.3622663254980958}, {"color": "#255280", "from": "Hybrid", "label": 0.5683550498229526, "to": "Triple", "value": 32.302746265925094, "weight": 0.5683550498229526}, {"color": "#255280", "from": "Hybrid", "label": 0.472846054655333, "to": "Wide-angle tail (WAT)", "value": 22.35833914031142, "weight": 0.472846054655333}, {"color": "#255280", "from": "Hybrid", "label": 0.32897917430424545, "to": "diffuse", "value": 10.822729712590311, "weight": 0.32897917430424545}, {"color": "#255280", "from": "Hybrid", "label": 0.36257496394104033, "to": "edge", "value": 13.146060447684668, "weight": 0.36257496394104033}, {"color": "#255280", "from": "Hybrid", "label": 0.3025266704628996, "to": "frame", "value": 9.152238634136785, "weight": 0.3025266704628996}, {"color": "#255280", "from": "Hybrid", "label": 0.3202214327104986, "to": "large", "value": 10.254176596716437, "weight": 0.3202214327104986}, {"color": "#255280", "from": "Hybrid", "label": 0.3512620738241015, "to": "margin", "value": 12.338504450720853, "weight": 0.3512620738241015}, {"color": "#255280", "from": "Narrow-angle tail (NAT)", "label": 0.39043241813283003, "to": "Wide-angle tail (WAT)", "value": 15.243747312904901, "weight": 0.39043241813283003}, {"color": "#255280", "from": "Narrow-angle tail (NAT)", "label": 0.3491770954118806, "to": "complex", "value": 12.192464396027756, "weight": 0.3491770954118806}, {"color": "#255280", "from": "Narrow-angle tail (NAT)", "label": 0.3516452759625615, "to": "smear", "value": 12.365440010678604, "weight": 0.3516452759625615}, {"color": "#255280", "from": "Narrow-angle tail (NAT)", "label": 0.3087450826482423, "to": "turbulent", "value": 9.532352605946997, "weight": 0.3087450826482423}, {"color": "#255280", "from": "Odd Radio Circle (ORC)", "label": 0.6631372452488373, "to": "anomalous", "value": 43.97510060362166, "weight": 0.6631372452488373}, {"color": "#255280", "from": "Odd Radio Circle (ORC)", "label": 0.31549435220919764, "to": "diffuse", "value": 9.953668627590124, "weight": 0.31549435220919764}, {"color": "#255280", "from": "Odd Radio Circle (ORC)", "label": 0.575555759445572, "to": "radiate", "value": 33.12644322309692, "weight": 0.575555759445572}, {"color": "#255280", "from": "Odd Radio Circle (ORC)", "label": 0.575555759445572, "to": "unstructured", "value": 33.12644322309692, "weight": 0.575555759445572}, {"color": "#255280", "from": "S-shaped", "label": 0.33623217642978576, "to": "bend", "value": 11.305207646671057, "weight": 0.33623217642978576}, {"color": "#255280", "from": "S-shaped", "label": 0.41338395997069977, "to": "bent", "value": 17.08862983610571, "weight": 0.41338395997069977}, {"color": "#255280", "from": "S-shaped", "label": 0.31257749719660277, "to": "frame", "value": 9.770469175369222, "weight": 0.31257749719660277}, {"color": "#99632c", "from": "Single", "label": -0.3790708449758943, "to": "Triple", "value": 14.369470551073851, "weight": -0.3790708449758943}, {"color": "#99632c", "from": "Single", "label": -0.41649327818929077, "to": "bridge", "value": 17.346665077686197, "weight": -0.41649327818929077}, {"color": "#255280", "from": "Single", "label": 0.3976647091103167, "to": "compact", "value": 15.81372208717928, "weight": 0.3976647091103167}, {"color": "#99632c", "from": "Single", "label": -0.5469427620225167, "to": "double", "value": 29.914638492881934, "weight": -0.5469427620225167}, {"color": "#99632c", "from": "Single", "label": -0.3823652659246052, "to": "edge", "value": 14.620319658559403, "weight": -0.3823652659246052}, {"color": "#99632c", "from": "Single", "label": -0.3808828588869334, "to": "peak", "value": 14.507175219388364, "weight": -0.3808828588869334}, {"color": "#99632c", "from": "Single", "label": -0.30576678051321315, "to": "radio", "value": 9.349332406541548, "weight": -0.30576678051321315}, {"color": "#255280", "from": "Single", "label": 0.32419575060036887, "to": "single", "value": 10.510288470733657, "weight": 0.32419575060036887}, {"color": "#255280", "from": "Star Forming Galaxy (SFG)", "label": 0.4574832167725541, "to": "align", "value": 20.929089362856374, "weight": 0.4574832167725541}, {"color": "#255280", "from": "Star Forming Galaxy (SFG)", "label": 0.3907652009985768, "to": "clear", "value": 15.269744231145813, "weight": 0.3907652009985768}, {"color": "#255280", "from": "Star Forming Galaxy (SFG)", "label": 0.7736512521340341, "to": "disk", "value": 59.853625992855875, "weight": 0.7736512521340341}, {"color": "#99632c", "from": "Star Forming Galaxy (SFG)", "label": -0.31049830628606373, "to": "double", "value": 9.640919820651424, "weight": -0.31049830628606373}, {"color": "#255280", "from": "Star Forming Galaxy (SFG)", "label": 0.3401127336398642, "to": "follow", "value": 11.567667158398121, "weight": 0.3401127336398642}, {"color": "#255280", "from": "Star Forming Galaxy (SFG)", "label": 0.5308552309291747, "to": "overlap", "value": 28.180727620486746, "weight": 0.5308552309291747}, {"color": "#255280", "from": "Star Forming Galaxy (SFG)", "label": 0.5690496308266322, "to": "spiral", "value": 32.38174823439264, "weight": 0.5690496308266322}, {"color": "#255280", "from": "Star Forming Galaxy (SFG)", "label": 0.7538894875761237, "to": "trace", "value": 56.834935947779044, "weight": 0.7538894875761237}, {"color": "#255280", "from": "Triple", "label": 0.5062488567868954, "to": "Wide-angle tail (WAT)", "value": 25.62879049980385, "weight": 0.5062488567868954}, {"color": "#255280", "from": "Triple", "label": 0.3160379227521454, "to": "bright", "value": 9.9879968617491, "weight": 0.3160379227521454}, {"color": "#255280", "from": "Triple", "label": 0.316701141460655, "to": "core", "value": 10.02996130024818, "weight": 0.316701141460655}, {"color": "#255280", "from": "Triple", "label": 0.4200027648571043, "to": "double", "value": 17.640232248761205, "weight": 0.4200027648571043}, {"color": "#255280", "from": "Triple", "label": 0.4162338891011203, "to": "edge", "value": 17.32506504362437, "weight": 0.4162338891011203}, {"color": "#255280", "from": "Triple", "label": 0.31920165225251534, "to": "large", "value": 10.188969480073574, "weight": 0.31920165225251534}, {"color": "#255280", "from": "Triple", "label": 0.39518846314644995, "to": "margin", "value": 15.617392140405304, "weight": 0.39518846314644995}, {"color": "#255280", "from": "Wide-angle tail (WAT)", "label": 0.35300824641820566, "to": "bendy", "value": 12.46148220392566, "weight": 0.35300824641820566}, {"color": "#255280", "from": "Wide-angle tail (WAT)", "label": 0.5110673970221473, "to": "bent", "value": 26.118988429899314, "weight": 0.5110673970221473}, {"color": "#255280", "from": "Wide-angle tail (WAT)", "label": 0.3538526854275943, "to": "complex", "value": 12.521172298432, "weight": 0.3538526854275943}, {"color": "#255280", "from": "Wide-angle tail (WAT)", "label": 0.30520799872106597, "to": "confused", "value": 9.31519224833182, "weight": 0.30520799872106597}, {"color": "#255280", "from": "X-shaped", "label": 0.319534126427553, "to": "square", "value": 10.210205795181944, "weight": 0.319534126427553}, {"color": "#255280", "from": ")", "label": 0.40342974430362954, "to": "elliptical", "value": 16.27555585888919, "weight": 0.40342974430362954}, {"color": "#255280", "from": ")", "label": 0.30927580992361414, "to": "fall", "value": 9.565152660390751, "weight": 0.30927580992361414}, {"color": "#255280", "from": "?", "label": 0.3741401135197654, "to": "resolve", "value": 13.998082454458293, "weight": 0.3741401135197654}, {"color": "#255280", "from": "align", "label": 0.34562453203064325, "to": "disk", "value": 11.945631714140115, "weight": 0.34562453203064325}, {"color": "#255280", "from": "align", "label": 0.43826649066647183, "to": "trace", "value": 19.207751684110463, "weight": 0.43826649066647183}, {"color": "#255280", "from": "ambiguous", "label": 0.4034297443036296, "to": "lobes", "value": 16.275555858889195, "weight": 0.4034297443036296}, {"color": "#255280", "from": "ambiguous", "label": 0.3265765765765764, "to": "spot", "value": 10.665226036847647, "weight": 0.3265765765765764}, {"color": "#255280", "from": "anomalous", "label": 0.31141590481510717, "to": "radiate", "value": 9.697986577181188, "weight": 0.31141590481510717}, {"color": "#255280", "from": "anomalous", "label": 0.3114159048151073, "to": "strange", "value": 9.697986577181195, "weight": 0.3114159048151073}, {"color": "#255280", "from": "anomalous", "label": 0.31141590481510717, "to": "unstructured", "value": 9.697986577181188, "weight": 0.31141590481510717}, {"color": "#255280", "from": "arc", "label": 0.7059193634197936, "to": "curve", "value": 49.83221476510066, "weight": 0.7059193634197936}, {"color": "#255280", "from": "artefact", "label": 0.3343692707309527, "to": "dense", "value": 11.180280920914914, "weight": 0.3343692707309527}, {"color": "#255280", "from": "artefact", "label": 0.40342974430363004, "to": "offscreen", "value": 16.27555585888923, "weight": 0.40342974430363004}, {"color": "#255280", "from": "artefact", "label": 0.30927580992361414, "to": "shock", "value": 9.565152660390751, "weight": 0.30927580992361414}, {"color": "#255280", "from": "artifact", "label": 0.4200739026931008, "to": "noise", "value": 17.646208372381274, "weight": 0.4200739026931008}, {"color": "#255280", "from": "associated", "label": 0.3741401135197654, "to": "hot", "value": 13.998082454458293, "weight": 0.3741401135197654}, {"color": "#255280", "from": "axis", "label": 0.5754095905248787, "to": "direction", "value": 33.10961968680086, "weight": 0.5754095905248787}, {"color": "#255280", "from": "axis", "label": 0.5754095905248792, "to": "map", "value": 33.10961968680091, "weight": 0.5754095905248792}, {"color": "#255280", "from": "bend", "label": 0.3265765765765766, "to": "possibility", "value": 10.665226036847661, "weight": 0.3265765765765766}, {"color": "#255280", "from": "bendy", "label": 0.3090111438585456, "to": "frame", "value": 9.548788702876678, "weight": 0.3090111438585456}, {"color": "#255280", "from": "bent", "label": 0.30362322090707405, "to": "peak", "value": 9.21870602739859, "weight": 0.30362322090707405}, {"color": "#255280", "from": "black", "label": 0.3114159048151072, "to": "long", "value": 9.697986577181192, "weight": 0.3114159048151072}, {"color": "#255280", "from": "black", "label": 0.7059193634197934, "to": "object", "value": 49.83221476510064, "weight": 0.7059193634197934}, {"color": "#255280", "from": "blobby", "label": 0.31141590481510734, "to": "interact", "value": 9.697986577181199, "weight": 0.31141590481510734}, {"color": "#255280", "from": "blobby", "label": 0.3114159048151072, "to": "remnant", "value": 9.697986577181192, "weight": 0.3114159048151072}, {"color": "#255280", "from": "bow", "label": 0.5415612528643707, "to": "core", "value": 29.32885906040269, "weight": 0.5415612528643707}, {"color": "#255280", "from": "bow", "label": 0.4442020218792469, "to": "multiple", "value": 19.731543624161095, "weight": 0.4442020218792469}, {"color": "#255280", "from": "bridge", "label": 0.463594310084385, "to": "double", "value": 21.49196843426169, "weight": 0.463594310084385}, {"color": "#255280", "from": "bridge", "label": 0.3339179654917161, "to": "edge", "value": 11.150120767812691, "weight": 0.3339179654917161}, {"color": "#255280", "from": "bridge", "label": 0.3113940995299995, "to": "hourglass", "value": 9.696628522209926, "weight": 0.3113940995299995}, {"color": "#255280", "from": "bridge", "label": 0.3087645301865514, "to": "lobe", "value": 9.533553510132183, "weight": 0.3087645301865514}, {"color": "#255280", "from": "bridge", "label": 0.45170478227144467, "to": "peak", "value": 20.403721032689322, "weight": 0.45170478227144467}, {"color": "#255280", "from": "bulge", "label": 0.7059193634197937, "to": "bump", "value": 49.83221476510067, "weight": 0.7059193634197937}, {"color": "#255280", "from": "bulge", "label": 0.30927580992361425, "to": "shock", "value": 9.565152660390758, "weight": 0.30927580992361425}, {"color": "#255280", "from": "bump", "label": 0.4048089006988499, "to": "right", "value": 16.38702460850113, "weight": 0.4048089006988499}, {"color": "#255280", "from": "center", "label": 0.3741401135197655, "to": "resolve", "value": 13.998082454458302, "weight": 0.3741401135197655}, {"color": "#255280", "from": "centre", "label": 0.44253229294271695, "to": "connected", "value": 19.583483029713868, "weight": 0.44253229294271695}, {"color": "#255280", "from": "centre", "label": 0.3383081385343748, "to": "offscreen", "value": 11.445239659859373, "weight": 0.3383081385343748}, {"color": "#255280", "from": "chaotic", "label": 0.31060297013238464, "to": "diffuse", "value": 9.647420505505902, "weight": 0.31060297013238464}, {"color": "#255280", "from": "chaotic", "label": 0.34147616418878435, "to": "disperse", "value": 11.660597070908562, "weight": 0.34147616418878435}, {"color": "#255280", "from": "clear", "label": 0.33774619894695984, "to": "disk", "value": 11.407249490311939, "weight": 0.33774619894695984}, {"color": "#255280", "from": "clear", "label": 0.5135424407912038, "to": "isolate", "value": 26.372583849378707, "weight": 0.5135424407912038}, {"color": "#255280", "from": "clear", "label": 0.32165893943742213, "to": "trace", "value": 10.34644733200072, "weight": 0.32165893943742213}, {"color": "#255280", "from": "cluster", "label": 0.44420202187924673, "to": "envelope", "value": 19.73154362416108, "weight": 0.44420202187924673}, {"color": "#255280", "from": "cluster", "label": 0.31052157133660746, "to": "filament", "value": 9.64236462653558, "weight": 0.31052157133660746}, {"color": "#255280", "from": "cluster", "label": 0.44420202187924684, "to": "interact", "value": 19.731543624161088, "weight": 0.44420202187924684}, {"color": "#99632c", "from": "compact", "label": -0.31810179235455543, "to": "complex", "value": 10.11887502991807, "weight": -0.31810179235455543}, {"color": "#99632c", "from": "compact", "label": -0.32146984322644584, "to": "double", "value": 10.334286010403567, "weight": -0.32146984322644584}, {"color": "#255280", "from": "compact", "label": 0.3732275828862254, "to": "isolate", "value": 13.929882862709423, "weight": 0.3732275828862254}, {"color": "#99632c", "from": "compact", "label": -0.3364509185168773, "to": "peak", "value": 11.31992205708504, "weight": -0.3364509185168773}, {"color": "#255280", "from": "compact", "label": 0.386300299702974, "to": "simple", "value": 14.922792155060755, "weight": 0.386300299702974}, {"color": "#255280", "from": "compact", "label": 0.3078449330799978, "to": "single", "value": 9.47685028230283, "weight": 0.3078449330799978}, {"color": "#255280", "from": "complex", "label": 0.4121011191911546, "to": "diffuse", "value": 16.98273324386022, "weight": 0.4121011191911546}, {"color": "#255280", "from": "complex", "label": 0.3072589952438459, "to": "margin", "value": 9.440809015825772, "weight": 0.3072589952438459}, {"color": "#255280", "from": "complex", "label": 0.3066766615786779, "to": "region", "value": 9.405057475704295, "weight": 0.3066766615786779}, {"color": "#255280", "from": "complex", "label": 0.3488300310994025, "to": "turbulent", "value": 12.168239059681014, "weight": 0.3488300310994025}, {"color": "#255280", "from": "composite", "label": 0.3368599489303757, "to": "ring", "value": 11.347462519337531, "weight": 0.3368599489303757}, {"color": "#255280", "from": "confused", "label": 0.3475831885070354, "to": "curve", "value": 12.081407293271731, "weight": 0.3475831885070354}, {"color": "#255280", "from": "confused", "label": 0.3554045228854374, "to": "filament", "value": 12.631237488742538, "weight": 0.3554045228854374}, {"color": "#255280", "from": "confused", "label": 0.39853039842814775, "to": "right", "value": 15.88264784712982, "weight": 0.39853039842814775}, {"color": "#255280", "from": "connected", "label": 0.347583188507035, "to": "region", "value": 12.081407293271704, "weight": 0.347583188507035}, {"color": "#255280", "from": "core", "label": 0.3562902979370859, "to": "hotspot", "value": 12.694277640409743, "weight": 0.3562902979370859}, {"color": "#255280", "from": "correlation", "label": 0.4966329966329968, "to": "scale", "value": 24.664433334467024, "weight": 0.4966329966329968}, {"color": "#255280", "from": "counterpart", "label": 0.3303496802785466, "to": "lobe", "value": 10.913091126013796, "weight": 0.3303496802785466}, {"color": "#255280", "from": "cut", "label": 0.4048089006988494, "to": "image", "value": 16.38702460850109, "weight": 0.4048089006988494}, {"color": "#255280", "from": "cutout", "label": 0.37327640353139263, "to": "large", "value": 13.933527343333107, "weight": 0.37327640353139263}, {"color": "#255280", "from": "dense", "label": 0.48454226767012243, "to": "fertilize", "value": 23.478120915890457, "weight": 0.48454226767012243}, {"color": "#255280", "from": "dense", "label": 0.34082531284195955, "to": "frame", "value": 11.61618938738196, "weight": 0.34082531284195955}, {"color": "#255280", "from": "dense", "label": 0.48454226767012243, "to": "unclear", "value": 23.478120915890457, "weight": 0.48454226767012243}, {"color": "#255280", "from": "detach", "label": 0.7059193634197933, "to": "noir", "value": 49.83221476510062, "weight": 0.7059193634197933}, {"color": "#255280", "from": "detach", "label": 0.32882862176318906, "to": "tadpole", "value": 10.812826249067845, "weight": 0.32882862176318906}, {"color": "#255280", "from": "detection", "label": 0.37414011351976556, "to": "difficult", "value": 13.998082454458306, "weight": 0.37414011351976556}, {"color": "#255280", "from": "diffuse", "label": 0.3032902649320787, "to": "distort", "value": 9.19849848025705, "weight": 0.3032902649320787}, {"color": "#255280", "from": "diffuse", "label": 0.39871529625791463, "to": "extend", "value": 15.897388747003664, "weight": 0.39871529625791463}, {"color": "#255280", "from": "diffuse", "label": 0.31622867321306497, "to": "frame", "value": 10.000057376209543, "weight": 0.31622867321306497}, {"color": "#255280", "from": "diffuse", "label": 0.3184559463617917, "to": "large", "value": 10.141418977318436, "weight": 0.3184559463617917}, {"color": "#255280", "from": "diffuse", "label": 0.464832198993421, "to": "margin", "value": 21.606897322105933, "weight": 0.464832198993421}, {"color": "#255280", "from": "diffuse", "label": 0.5051086619509205, "to": "turbulent", "value": 25.513476037784933, "weight": 0.5051086619509205}, {"color": "#255280", "from": "diffusion", "label": 0.3741401135197654, "to": "hot", "value": 13.998082454458293, "weight": 0.3741401135197654}, {"color": "#255280", "from": "dim", "label": 0.30927580992361403, "to": "disperse", "value": 9.565152660390744, "weight": 0.30927580992361403}, {"color": "#255280", "from": "dim", "label": 0.34758318850703507, "to": "particular", "value": 12.081407293271708, "weight": 0.34758318850703507}, {"color": "#255280", "from": "direction", "label": 0.32657657657657635, "to": "map", "value": 10.665226036847644, "weight": 0.32657657657657635}, {"color": "#255280", "from": "disk", "label": 0.3326633515349908, "to": "follow", "value": 11.066490545449287, "weight": 0.3326633515349908}, {"color": "#255280", "from": "disk", "label": 0.4951671375941155, "to": "overlap", "value": 24.51904941531497, "weight": 0.4951671375941155}, {"color": "#255280", "from": "disk", "label": 0.464593591042885, "to": "spiral", "value": 21.584720483812347, "weight": 0.464593591042885}, {"color": "#255280", "from": "disk", "label": 0.6180120980688452, "to": "trace", "value": 38.19389533594559, "weight": 0.6180120980688452}, {"color": "#255280", "from": "disperse", "label": 0.444202021879247, "to": "morphology", "value": 19.731543624161105, "weight": 0.444202021879247}, {"color": "#255280", "from": "disperse", "label": 0.30927580992361453, "to": "patchy", "value": 9.565152660390774, "weight": 0.30927580992361453}, {"color": "#255280", "from": "disperse", "label": 0.44420202187924696, "to": "remnant", "value": 19.731543624161098, "weight": 0.44420202187924696}, {"color": "#255280", "from": "double", "label": 0.44707527725119944, "to": "edge", "value": 19.987630352923684, "weight": 0.44707527725119944}, {"color": "#255280", "from": "double", "label": 0.44372683839924015, "to": "hourglass", "value": 19.689350711578538, "weight": 0.44372683839924015}, {"color": "#255280", "from": "double", "label": 0.4091550719292282, "to": "lobe", "value": 16.74078728854119, "weight": 0.4091550719292282}, {"color": "#255280", "from": "double", "label": 0.4891897361980383, "to": "peak", "value": 23.93065980015063, "weight": 0.4891897361980383}, {"color": "#99632c", "from": "double", "label": -0.38258584517961053, "to": "single", "value": 14.637192893179693, "weight": -0.38258584517961053}, {"color": "#255280", "from": "double", "label": 0.3160807444255506, "to": "straight", "value": 9.990703699661024, "weight": 0.3160807444255506}, {"color": "#255280", "from": "doulbe", "label": 0.4034297443036296, "to": "downward", "value": 16.275555858889195, "weight": 0.4034297443036296}, {"color": "#255280", "from": "doulbe", "label": 0.5741070907471847, "to": "galaxy", "value": 32.95989516461962, "weight": 0.5741070907471847}, {"color": "#255280", "from": "doulbe", "label": 0.7059193634197934, "to": "unrelated", "value": 49.83221476510064, "weight": 0.7059193634197934}, {"color": "#255280", "from": "downward", "label": 0.5754095905248792, "to": "unrelated", "value": 33.10961968680091, "weight": 0.5754095905248792}, {"color": "#255280", "from": "drag", "label": 0.40480890069885, "to": "merger", "value": 16.38702460850114, "weight": 0.40480890069885}, {"color": "#255280", "from": "drag", "label": 0.4442020218792469, "to": "multiple", "value": 19.731543624161095, "weight": 0.4442020218792469}, {"color": "#255280", "from": "drag", "label": 0.7059193634197934, "to": "object", "value": 49.83221476510064, "weight": 0.7059193634197934}, {"color": "#255280", "from": "drag", "label": 0.5754095905248789, "to": "possibility", "value": 33.10961968680088, "weight": 0.5754095905248789}, {"color": "#255280", "from": "edge", "label": 0.30613826036165726, "to": "extend", "value": 9.372063445726186, "weight": 0.30613826036165726}, {"color": "#255280", "from": "edge", "label": 0.3123009783323872, "to": "large", "value": 9.753190106736618, "weight": 0.3123009783323872}, {"color": "#255280", "from": "edge", "label": 0.40033449019885387, "to": "margin", "value": 16.02677040427762, "weight": 0.40033449019885387}, {"color": "#255280", "from": "edge", "label": 0.42595915707009296, "to": "peak", "value": 18.144120349186412, "weight": 0.42595915707009296}, {"color": "#255280", "from": "envelope", "label": 0.3846153880811621, "to": "irregular", "value": 14.79289967488229, "weight": 0.3846153880811621}, {"color": "#255280", "from": "extend", "label": 0.3186319327213237, "to": "frame", "value": 10.152630854972614, "weight": 0.3186319327213237}, {"color": "#255280", "from": "extend", "label": 0.36173679728744124, "to": "large", "value": 13.085351051177534, "weight": 0.36173679728744124}, {"color": "#255280", "from": "extend", "label": 0.3467858754421575, "to": "margin", "value": 12.026044340618359, "weight": 0.3467858754421575}, {"color": "#255280", "from": "extend", "label": 0.30164438553630735, "to": "turbulent", "value": 9.098933532557643, "weight": 0.30164438553630735}, {"color": "#255280", "from": "fall", "label": 0.3678046282181928, "to": "large", "value": 13.528024453872304, "weight": 0.3678046282181928}, {"color": "#255280", "from": "fall", "label": 0.44420202187924673, "to": "spread", "value": 19.73154362416108, "weight": 0.44420202187924673}, {"color": "#255280", "from": "fall", "label": 0.3558852316166965, "to": "turbulent", "value": 12.665429808286971, "weight": 0.3558852316166965}, {"color": "#255280", "from": "fall", "label": 0.4442020218792467, "to": "visible", "value": 19.731543624161073, "weight": 0.4442020218792467}, {"color": "#255280", "from": "fertilize", "label": 0.5754095905248789, "to": "ring", "value": 33.10961968680088, "weight": 0.5754095905248789}, {"color": "#255280", "from": "field", "label": 0.3741401135197654, "to": "hot", "value": 13.998082454458293, "weight": 0.3741401135197654}, {"color": "#255280", "from": "field", "label": 0.44420202187924684, "to": "low", "value": 19.731543624161088, "weight": 0.44420202187924684}, {"color": "#255280", "from": "follow", "label": 0.37133603961187317, "to": "merger", "value": 13.789045431463066, "weight": 0.37133603961187317}, {"color": "#255280", "from": "follow", "label": 0.4411494016915293, "to": "scale", "value": 19.461279461279428, "weight": 0.4411494016915293}, {"color": "#255280", "from": "follow", "label": 0.3114159048151072, "to": "strange", "value": 9.697986577181192, "weight": 0.3114159048151072}, {"color": "#255280", "from": "follow", "label": 0.31141590481510706, "to": "unrelated", "value": 9.697986577181181, "weight": 0.31141590481510706}, {"color": "#255280", "from": "frame", "label": 0.45497347370956137, "to": "large", "value": 20.700086177934494, "weight": 0.45497347370956137}, {"color": "#255280", "from": "frame", "label": 0.4190837611063721, "to": "margin", "value": 17.563119882306275, "weight": 0.4190837611063721}, {"color": "#255280", "from": "frame", "label": 0.34763899847922697, "to": "plume", "value": 12.085287326363996, "weight": 0.34763899847922697}, {"color": "#255280", "from": "frame", "label": 0.30688844051665587, "to": "screen", "value": 9.418051492274502, "weight": 0.30688844051665587}, {"color": "#255280", "from": "frame", "label": 0.4452878536752545, "to": "turbulent", "value": 19.828127263071487, "weight": 0.4452878536752545}, {"color": "#255280", "from": "jet", "label": 0.35344167932147624, "to": "tendril", "value": 12.492102068158525, "weight": 0.35344167932147624}, {"color": "#255280", "from": "large", "label": 0.473949512002566, "to": "margin", "value": 22.462813992747048, "weight": 0.473949512002566}, {"color": "#255280", "from": "large", "label": 0.3157797983464338, "to": "screen", "value": 9.971688104371442, "weight": 0.3157797983464338}, {"color": "#255280", "from": "large", "label": 0.47773276603493137, "to": "spread", "value": 22.822859574338647, "weight": 0.47773276603493137}, {"color": "#255280", "from": "large", "label": 0.38771376453383233, "to": "turbulent", "value": 15.0321963208996, "weight": 0.38771376453383233}, {"color": "#255280", "from": "large", "label": 0.3203569126782222, "to": "wide", "value": 10.262855150072207, "weight": 0.3203569126782222}, {"color": "#255280", "from": "lens", "label": 0.3092758099236141, "to": "low", "value": 9.565152660390746, "weight": 0.3092758099236141}, {"color": "#255280", "from": "lens", "label": 0.347583188507035, "to": "private.", "value": 12.081407293271704, "weight": 0.347583188507035}, {"color": "#255280", "from": "lens", "label": 0.8151208485588693, "to": "ring", "value": 66.44219977553311, "weight": 0.8151208485588693}, {"color": "#255280", "from": "low", "label": 0.4388621914224004, "to": "messy", "value": 19.260002306007163, "weight": 0.4388621914224004}, {"color": "#255280", "from": "margin", "label": 0.43783600884544127, "to": "screen", "value": 19.170037064170533, "weight": 0.43783600884544127}, {"color": "#255280", "from": "margin", "label": 0.3849691900888082, "to": "turbulent", "value": 14.820127731763295, "weight": 0.3849691900888082}, {"color": "#255280", "from": "match", "label": 0.7059193634197934, "to": "strong", "value": 49.83221476510064, "weight": 0.7059193634197934}, {"color": "#255280", "from": "merger", "label": 0.46420741707638735, "to": "possibility", "value": 21.548852606873105, "weight": 0.46420741707638735}, {"color": "#255280", "from": "merger", "label": 0.40480890069885, "to": "space", "value": 16.38702460850114, "weight": 0.40480890069885}, {"color": "#255280", "from": "merger", "label": 0.40480890069885, "to": "unusual", "value": 16.38702460850114, "weight": 0.40480890069885}, {"color": "#255280", "from": "messy", "label": 0.49747685521691354, "to": "radiate", "value": 24.748322147650995, "weight": 0.49747685521691354}, {"color": "#255280", "from": "messy", "label": 0.49747685521691365, "to": "spread", "value": 24.748322147651006, "weight": 0.49747685521691365}, {"color": "#255280", "from": "messy", "label": 0.49747685521691354, "to": "unstructured", "value": 24.748322147650995, "weight": 0.49747685521691354}, {"color": "#255280", "from": "morphology", "label": 0.575409590524879, "to": "structure", "value": 33.1096196868009, "weight": 0.575409590524879}, {"color": "#255280", "from": "multiple", "label": 0.3092758099236141, "to": "object", "value": 9.565152660390746, "weight": 0.3092758099236141}, {"color": "#255280", "from": "multiple", "label": 0.4442020218792469, "to": "space", "value": 19.731543624161095, "weight": 0.4442020218792469}, {"color": "#255280", "from": "multiple", "label": 0.44420202187924684, "to": "square", "value": 19.731543624161088, "weight": 0.44420202187924684}, {"color": "#255280", "from": "multiple", "label": 0.4442020218792469, "to": "unusual", "value": 19.731543624161095, "weight": 0.4442020218792469}, {"color": "#255280", "from": "noir", "label": 0.4658161240544447, "to": "tadpole", "value": 21.698466142910583, "weight": 0.4658161240544447}, {"color": "#255280", "from": "noise", "label": 0.31256688738392135, "to": "unknown", "value": 9.769805908887296, "weight": 0.31256688738392135}, {"color": "#255280", "from": "object", "label": 0.40342974430362977, "to": "possibility", "value": 16.27555585888921, "weight": 0.40342974430362977}, {"color": "#255280", "from": "object", "label": 0.7059193634197934, "to": "space", "value": 49.83221476510064, "weight": 0.7059193634197934}, {"color": "#255280", "from": "object", "label": 0.7059193634197934, "to": "unusual", "value": 49.83221476510064, "weight": 0.7059193634197934}, {"color": "#255280", "from": "offscreen", "label": 0.5102739579532026, "to": "shock", "value": 26.037951216522682, "weight": 0.5102739579532026}, {"color": "#255280", "from": "offscreen", "label": 0.32657657657657685, "to": "wide", "value": 10.665226036847676, "weight": 0.32657657657657685}, {"color": "#255280", "from": "overlap", "label": 0.4312719594896706, "to": "spiral", "value": 18.59955030420601, "weight": 0.4312719594896706}, {"color": "#255280", "from": "overlap", "label": 0.4110340841266204, "to": "trace", "value": 16.894901831380967, "weight": 0.4110340841266204}, {"color": "#255280", "from": "patchy", "label": 0.3475831885070349, "to": "superimpose", "value": 12.081407293271695, "weight": 0.3475831885070349}, {"color": "#99632c", "from": "peak", "label": -0.30219186514310953, "to": "single", "value": 9.13199233586713, "weight": -0.30219186514310953}, {"color": "#255280", "from": "possibility", "label": 0.5754095905248789, "to": "space", "value": 33.10961968680088, "weight": 0.5754095905248789}, {"color": "#255280", "from": "possibility", "label": 0.5754095905248789, "to": "unusual", "value": 33.10961968680088, "weight": 0.5754095905248789}, {"color": "#255280", "from": "private.", "label": 0.34758318850703507, "to": "scale", "value": 12.081407293271708, "weight": 0.34758318850703507}, {"color": "#255280", "from": "private.", "label": 0.49747685521691376, "to": "strange", "value": 24.748322147651017, "weight": 0.49747685521691376}, {"color": "#255280", "from": "radiate", "label": 0.37414011351976545, "to": "resolve", "value": 13.998082454458297, "weight": 0.37414011351976545}, {"color": "#255280", "from": "region", "label": 0.7059193634197936, "to": "tendril", "value": 49.83221476510066, "weight": 0.7059193634197936}, {"color": "#255280", "from": "resolve", "label": 0.3741401135197654, "to": "unstructured", "value": 13.998082454458293, "weight": 0.3741401135197654}, {"color": "#255280", "from": "ring", "label": 0.575409590524879, "to": "unclear", "value": 33.1096196868009, "weight": 0.575409590524879}, {"color": "#255280", "from": "scale", "label": 0.7059193634197934, "to": "strange", "value": 49.83221476510064, "weight": 0.7059193634197934}, {"color": "#255280", "from": "shape", "label": 0.31752873851112734, "to": "square", "value": 10.082449978046789, "weight": 0.31752873851112734}, {"color": "#255280", "from": "signal", "label": 0.4525761761671692, "to": "spiral", "value": 20.48251952340966, "weight": 0.4525761761671692}, {"color": "#255280", "from": "simple", "label": 0.33280253705606455, "to": "slightly", "value": 11.075752867095321, "weight": 0.33280253705606455}, {"color": "#255280", "from": "spiral", "label": 0.5517614292138823, "to": "trace", "value": 30.444067476814602, "weight": 0.5517614292138823}, {"color": "#255280", "from": "spread", "label": 0.5754095905248792, "to": "wide", "value": 33.10961968680091, "weight": 0.5754095905248792}, {"color": "#255280", "from": "superimpose", "label": 0.4974768552169135, "to": "western", "value": 24.74832214765099, "weight": 0.4974768552169135}]);
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {
"configure": {
"enabled": false
},
"edges": {
"color": {
"inherit": true
},
"smooth": {
"enabled": true,
"type": "dynamic"
}
},
"interaction": {
"dragNodes": true,
"hideEdgesOnDrag": false,
"hideNodesOnDrag": false
},
"physics": {
"enabled": true,
"stabilization": {
"enabled": true,
"fit": true,
"iterations": 1000,
"onlyDynamicEdges": false,
"updateInterval": 50
}
}
};
network = new vis.Network(container, data, options);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>