22-028andre/PPE
0
1<html>
2 <head>
3 <meta charset="utf-8">
4
5 <script src="lib/bindings/utils.js"></script>
6 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
7 <script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
8
9
10<center>
11<h1></h1>
12</center>
13
14<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
15<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
16 <link
17 href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
18 rel="stylesheet"
19 integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
20 crossorigin="anonymous"
21 />
22 <script
23 src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"
24 integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
25 crossorigin="anonymous"
26 ></script>
27
28
29 <center>
30 <h1></h1>
31 </center>
32 <style type="text/css">
33
34 #mynetwork {
35 width: 100%;
36 height: 600px;
37 background-color: #ffffff;
38 border: 1px solid lightgray;
39 position: relative;
40 float: left;
41 }
42
43
44 #loadingBar {
45 position:absolute;
46 top:0px;
47 left:0px;
48 width: 100%;
49 height: 600px;
50 background-color:rgba(200,200,200,0.8);
51 -webkit-transition: all 0.5s ease;
52 -moz-transition: all 0.5s ease;
53 -ms-transition: all 0.5s ease;
54 -o-transition: all 0.5s ease;
55 transition: all 0.5s ease;
56 opacity:1;
57 }
58
59 #bar {
60 position:absolute;
61 top:0px;
62 left:0px;
63 width:20px;
64 height:20px;
65 margin:auto auto auto auto;
66 border-radius:11px;
67 border:2px solid rgba(30,30,30,0.05);
68 background: rgb(0, 173, 246); /* Old browsers */
69 box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
70 }
71
72 #border {
73 position:absolute;
74 top:10px;
75 left:10px;
76 width:500px;
77 height:23px;
78 margin:auto auto auto auto;
79 box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
80 border-radius:10px;
81 }
82
83 #text {
84 position:absolute;
85 top:8px;
86 left:530px;
87 width:30px;
88 height:50px;
89 margin:auto auto auto auto;
90 font-size:22px;
91 color: #000000;
92 }
93
94 div.outerBorder {
95 position:relative;
96 top:400px;
97 width:600px;
98 height:44px;
99 margin:auto auto auto auto;
100 border:8px solid rgba(0,0,0,0.1);
101 background: rgb(252,252,252); /* Old browsers */
102 background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
103 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+ */
104 background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
105 background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
106 background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
107 background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
108 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
109 border-radius:72px;
110 box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
111 }
112
113
114
115
116
117 </style>
118 </head>
119
120
121 <body>
122 <div class="card" style="width: 100%">
123
124
125 <div id="mynetwork" class="card-body"></div>
126 </div>
127
128
129 <div id="loadingBar">
130 <div class="outerBorder">
131 <div id="text">0%</div>
132 <div id="border">
133 <div id="bar"></div>
134 </div>
135 </div>
136 </div>
137
138
139
140 <script type="text/javascript">
141
142 // initialize global variables.
143 var edges;
144 var nodes;
145 var allNodes;
146 var allEdges;
147 var nodeColors;
148 var originalNodes;
149 var network;
150 var container;
151 var options, data;
152 var filter = {
153 item : '',
154 property : '',
155 value : []
156 };
157
158
159
160
161
162 // This method is responsible for drawing the graph, returns the drawn network
163 function drawGraph() {
164 var container = document.getElementById('mynetwork');
165
166
167
168 // parsing and collecting nodes and edges from the python
169 nodes = new vis.DataSet([{"color": "#97c2fc", "font": {"color": "black"}, "id": "berikut", "label": "berikut", "shape": "dot", "size": 4.576245354357562, "title": "PageRank: 0.0046"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "matrix", "label": "matrix", "shape": "dot", "size": 2.8423092478580703, "title": "PageRank: 0.0028"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "telah", "label": "telah", "shape": "dot", "size": 2.495596386045049, "title": "PageRank: 0.0025"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "banyaknya", "label": "banyaknya", "shape": "dot", "size": 2.468208467290931, "title": "PageRank: 0.0025"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "license", "label": "license", "shape": "dot", "size": 4.018420946278364, "title": "PageRank: 0.0040"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "menjadi", "label": "menjadi", "shape": "dot", "size": 5.700990924016977, "title": "PageRank: 0.0057"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "2964", "label": "2964", "shape": "dot", "size": 4.168413713648147, "title": "PageRank: 0.0042"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "algoritma", "label": "algoritma", "shape": "dot", "size": 7.422931571574285, "title": "PageRank: 0.0074"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "jteksis", "label": "jteksis", "shape": "dot", "size": 7.432184112652144, "title": "PageRank: 0.0074"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "valence", "label": "valence", "shape": "dot", "size": 3.2685299683636306, "title": "PageRank: 0.0033"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "dapat", "label": "dapat", "shape": "dot", "size": 6.409746152066463, "title": "PageRank: 0.0064"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "media", "label": "media", "shape": "dot", "size": 3.256518814210208, "title": "PageRank: 0.0033"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "pengguna", "label": "pengguna", "shape": "dot", "size": 6.027896118882196, "title": "PageRank: 0.0060"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "upnjatim", "label": "upnjatim", "shape": "dot", "size": 9.967982881553208, "title": "PageRank: 0.0100"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "berdasarkan", "label": "berdasarkan", "shape": "dot", "size": 2.517616029178688, "title": "PageRank: 0.0025"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "arti", "label": "arti", "shape": "dot", "size": 1.4669885544180197, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "jumlah", "label": "jumlah", "shape": "dot", "size": 3.0954560675311464, "title": "PageRank: 0.0031"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "kata", "label": "kata", "shape": "dot", "size": 8.226047885626894, "title": "PageRank: 0.0082"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "recall", "label": "recall", "shape": "dot", "size": 5.498565939713938, "title": "PageRank: 0.0055"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "2132", "label": "2132", "shape": "dot", "size": 4.034477072938273, "title": "PageRank: 0.0040"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "precision", "label": "precision", "shape": "dot", "size": 5.498565939713938, "title": "PageRank: 0.0055"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "daftar", "label": "daftar", "shape": "dot", "size": 2.891914497035198, "title": "PageRank: 0.0029"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "kumpulan", "label": "kumpulan", "shape": "dot", "size": 3.380580719526221, "title": "PageRank: 0.0034"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "reviewed", "label": "reviewed", "shape": "dot", "size": 1.245543544661436, "title": "PageRank: 0.0012"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "accepted", "label": "accepted", "shape": "dot", "size": 1.245543544661436, "title": "PageRank: 0.0012"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "merupakan", "label": "merupakan", "shape": "dot", "size": 5.810200439819302, "title": "PageRank: 0.0058"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "februari", "label": "februari", "shape": "dot", "size": 1.5418034640758085, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "19215", "label": "19215", "shape": "dot", "size": 5.973286249595415, "title": "PageRank: 0.0060"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "salah", "label": "salah", "shape": "dot", "size": 3.9354507672898524, "title": "PageRank: 0.0039"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "mengetahui", "label": "mengetahui", "shape": "dot", "size": 1.4751258906033202, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "penelitian", "label": "penelitian", "shape": "dot", "size": 8.776566558512332, "title": "PageRank: 0.0088"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "memberikan", "label": "memberikan", "shape": "dot", "size": 1.5595748993307053, "title": "PageRank: 0.0016"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "sehingga", "label": "sehingga", "shape": "dot", "size": 1.3809945601760196, "title": "PageRank: 0.0014"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "alir", "label": "alir", "shape": "dot", "size": 5.27042505458504, "title": "PageRank: 0.0053"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "metode", "label": "metode", "shape": "dot", "size": 7.723318827125734, "title": "PageRank: 0.0077"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "accuracy", "label": "accuracy", "shape": "dot", "size": 2.3682003001014773, "title": "PageRank: 0.0024"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "selanjutnya", "label": "selanjutnya", "shape": "dot", "size": 1.9437839546189295, "title": "PageRank: 0.0019"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "mengatasi", "label": "mengatasi", "shape": "dot", "size": 2.475241771961725, "title": "PageRank: 0.0025"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "validation", "label": "validation", "shape": "dot", "size": 11.591423988745968, "title": "PageRank: 0.0116"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "universitas", "label": "universitas", "shape": "dot", "size": 3.6869988545246257, "title": "PageRank: 0.0037"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "diolah", "label": "diolah", "shape": "dot", "size": 1.4669885544180197, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "pandemi", "label": "pandemi", "shape": "dot", "size": 5.208333333333333, "title": "PageRank: 0.0052"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "pengambilan", "label": "pengambilan", "shape": "dot", "size": 2.5537887496236102, "title": "PageRank: 0.0026"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "test", "label": "test", "shape": "dot", "size": 6.257260847871932, "title": "PageRank: 0.0063"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "sentimen", "label": "sentimen", "shape": "dot", "size": 6.918256442540701, "title": "PageRank: 0.0069"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "masalah", "label": "masalah", "shape": "dot", "size": 3.985783098360658, "title": "PageRank: 0.0040"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "2022", "label": "2022", "shape": "dot", "size": 17.447874177432926, "title": "PageRank: 0.0174"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "mengurangi", "label": "mengurangi", "shape": "dot", "size": 2.5512841009746747, "title": "PageRank: 0.0026"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "bias", "label": "bias", "shape": "dot", "size": 2.5512841009746747, "title": "PageRank: 0.0026"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "jurnal", "label": "jurnal", "shape": "dot", "size": 12.863417269007554, "title": "PageRank: 0.0129"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "http", "label": "http", "shape": "dot", "size": 4.213737378074955, "title": "PageRank: 0.0042"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "klasifikasi", "label": "klasifikasi", "shape": "dot", "size": 5.510509139290947, "title": "PageRank: 0.0055"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "lain", "label": "lain", "shape": "dot", "size": 4.689085910041014, "title": "PageRank: 0.0047"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "dalam", "label": "dalam", "shape": "dot", "size": 13.577517258678384, "title": "PageRank: 0.0136"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "adalah", "label": "adalah", "shape": "dot", "size": 6.403349180940371, "title": "PageRank: 0.0064"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "sebanyak", "label": "sebanyak", "shape": "dot", "size": 4.890743948700963, "title": "PageRank: 0.0049"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "memilah", "label": "memilah", "shape": "dot", "size": 2.6805987148805865, "title": "PageRank: 0.0027"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "na\u00efve", "label": "na\u00efve", "shape": "dot", "size": 1.5134013194320102, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "9324", "label": "9324", "shape": "dot", "size": 2.4132952817233524, "title": "PageRank: 0.0024"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "satria", "label": "satria", "shape": "dot", "size": 3.621783483926708, "title": "PageRank: 0.0036"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "with", "label": "with", "shape": "dot", "size": 1.2693508796213402, "title": "PageRank: 0.0013"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "video", "label": "video", "shape": "dot", "size": 8.505371971080699, "title": "PageRank: 0.0085"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "atau", "label": "atau", "shape": "dot", "size": 6.7362312608803965, "title": "PageRank: 0.0067"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "sampel", "label": "sampel", "shape": "dot", "size": 3.0662231580688784, "title": "PageRank: 0.0031"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "tanggal", "label": "tanggal", "shape": "dot", "size": 1.5418034640758085, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "akurasi", "label": "akurasi", "shape": "dot", "size": 2.1333684927063086, "title": "PageRank: 0.0021"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "komputasi", "label": "komputasi", "shape": "dot", "size": 1.19385017456529, "title": "PageRank: 0.0012"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "berkomentar", "label": "berkomentar", "shape": "dot", "size": 2.82888603905229, "title": "PageRank: 0.0028"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "score", "label": "score", "shape": "dot", "size": 7.468001153803973, "title": "PageRank: 0.0075"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "confusion", "label": "confusion", "shape": "dot", "size": 2.1142769430827992, "title": "PageRank: 0.0021"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "setelah", "label": "setelah", "shape": "dot", "size": 1.4144172261270918, "title": "PageRank: 0.0014"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "komputer", "label": "komputer", "shape": "dot", "size": 2.0135591340435686, "title": "PageRank: 0.0020"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "mining", "label": "mining", "shape": "dot", "size": 3.8254852752746347, "title": "PageRank: 0.0038"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "timur", "label": "timur", "shape": "dot", "size": 3.6869988545246257, "title": "PageRank: 0.0037"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "proses", "label": "proses", "shape": "dot", "size": 2.1375337537896937, "title": "PageRank: 0.0021"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "stemming", "label": "stemming", "shape": "dot", "size": 1.433985405663881, "title": "PageRank: 0.0014"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "indonesia", "label": "indonesia", "shape": "dot", "size": 3.0126848985543617, "title": "PageRank: 0.0030"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "naive", "label": "naive", "shape": "dot", "size": 15.999177851529902, "title": "PageRank: 0.0160"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "tidak", "label": "tidak", "shape": "dot", "size": 1.4669885544180197, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "struktur", "label": "struktur", "shape": "dot", "size": 1.3809945601760196, "title": "PageRank: 0.0014"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "nilai", "label": "nilai", "shape": "dot", "size": 1.4751258906033202, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "veteran", "label": "veteran", "shape": "dot", "size": 6.729667812142035, "title": "PageRank: 0.0067"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "pembuatan", "label": "pembuatan", "shape": "dot", "size": 1.72181342487367, "title": "PageRank: 0.0017"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "9891", "label": "9891", "shape": "dot", "size": 2.2905887909694482, "title": "PageRank: 0.0023"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "setiap", "label": "setiap", "shape": "dot", "size": 1.6808668402640294, "title": "PageRank: 0.0017"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "konferensi", "label": "konferensi", "shape": "dot", "size": 6.215488070160271, "title": "PageRank: 0.0062"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "mudah", "label": "mudah", "shape": "dot", "size": 1.4669885544180197, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "terhadap", "label": "terhadap", "shape": "dot", "size": 1.8098578316270295, "title": "PageRank: 0.0018"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "kunci", "label": "kunci", "shape": "dot", "size": 3.8235074446301445, "title": "PageRank: 0.0038"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "sangat", "label": "sangat", "shape": "dot", "size": 5.392513852751969, "title": "PageRank: 0.0054"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "train", "label": "train", "shape": "dot", "size": 5.873480009641272, "title": "PageRank: 0.0059"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "positif", "label": "positif", "shape": "dot", "size": 2.4132952817233524, "title": "PageRank: 0.0024"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "summit", "label": "summit", "shape": "dot", "size": 2.3023569281516165, "title": "PageRank: 0.0023"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "untuk", "label": "untuk", "shape": "dot", "size": 9.79593181328912, "title": "PageRank: 0.0098"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "research", "label": "research", "shape": "dot", "size": 5.208333333333333, "title": "PageRank: 0.0052"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "mendapatkan", "label": "mendapatkan", "shape": "dot", "size": 4.519956150930511, "title": "PageRank: 0.0045"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "global", "label": "global", "shape": "dot", "size": 3.8844989094634483, "title": "PageRank: 0.0039"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "akan", "label": "akan", "shape": "dot", "size": 2.242011190830639, "title": "PageRank: 0.0022"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "online", "label": "online", "shape": "dot", "size": 4.737241572610295, "title": "PageRank: 0.0047"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "2655", "label": "2655", "shape": "dot", "size": 4.0934830115368825, "title": "PageRank: 0.0041"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "menggunakan", "label": "menggunakan", "shape": "dot", "size": 19.245762534974794, "title": "PageRank: 0.0192"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "tinggi", "label": "tinggi", "shape": "dot", "size": 9.16469610856951, "title": "PageRank: 0.0092"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "sebagai", "label": "sebagai", "shape": "dot", "size": 2.6565697767378342, "title": "PageRank: 0.0027"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "mencapai", "label": "mencapai", "shape": "dot", "size": 4.228505041356492, "title": "PageRank: 0.0042"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "data", "label": "data", "shape": "dot", "size": 43.74617260310801, "title": "PageRank: 0.0437"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "cross", "label": "cross", "shape": "dot", "size": 11.140476789379788, "title": "PageRank: 0.0111"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "comment", "label": "comment", "shape": "dot", "size": 1.3809945601760196, "title": "PageRank: 0.0014"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "lebih", "label": "lebih", "shape": "dot", "size": 5.208333333333333, "title": "PageRank: 0.0052"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "diakses", "label": "diakses", "shape": "dot", "size": 1.4669885544180197, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "membagi", "label": "membagi", "shape": "dot", "size": 1.3809945601760196, "title": "PageRank: 0.0014"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "penting", "label": "penting", "shape": "dot", "size": 1.4669885544180197, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "kemudian", "label": "kemudian", "shape": "dot", "size": 2.242011190830639, "title": "PageRank: 0.0022"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "dari", "label": "dari", "shape": "dot", "size": 10.080397537788746, "title": "PageRank: 0.0101"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "agar", "label": "agar", "shape": "dot", "size": 2.1399838743077546, "title": "PageRank: 0.0021"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "international", "label": "international", "shape": "dot", "size": 7.588158107443269, "title": "PageRank: 0.0076"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "nasional", "label": "nasional", "shape": "dot", "size": 6.729667812142035, "title": "PageRank: 0.0067"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "pelabelan", "label": "pelabelan", "shape": "dot", "size": 2.7007453912739385, "title": "PageRank: 0.0027"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "covid", "label": "covid", "shape": "dot", "size": 5.208333333333333, "title": "PageRank: 0.0052"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "jawa", "label": "jawa", "shape": "dot", "size": 5.20833333333333, "title": "PageRank: 0.0052"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "hasil", "label": "hasil", "shape": "dot", "size": 10.191695220136458, "title": "PageRank: 0.0102"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "bisnis", "label": "bisnis", "shape": "dot", "size": 7.74863426002229, "title": "PageRank: 0.0077"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "diperoleh", "label": "diperoleh", "shape": "dot", "size": 3.7617208845093577, "title": "PageRank: 0.0038"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "tingkat", "label": "tingkat", "shape": "dot", "size": 8.295344334630533, "title": "PageRank: 0.0083"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "gambar", "label": "gambar", "shape": "dot", "size": 4.583689433873308, "title": "PageRank: 0.0046"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "dokumen", "label": "dokumen", "shape": "dot", "size": 2.2180063904907756, "title": "PageRank: 0.0022"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "maupun", "label": "maupun", "shape": "dot", "size": 1.3809945601760196, "title": "PageRank: 0.0014"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "cdhian", "label": "cdhian", "shape": "dot", "size": 3.621783483926708, "title": "PageRank: 0.0036"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "forest", "label": "forest", "shape": "dot", "size": 2.9086698892202514, "title": "PageRank: 0.0029"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "label", "label": "label", "shape": "dot", "size": 2.1159857658996475, "title": "PageRank: 0.0021"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "miliar", "label": "miliar", "shape": "dot", "size": 2.3119279459410884, "title": "PageRank: 0.0023"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "model", "label": "model", "shape": "dot", "size": 3.319639745642703, "title": "PageRank: 0.0033"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "preprocessing", "label": "preprocessing", "shape": "dot", "size": 8.481362683144832, "title": "PageRank: 0.0085"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "unidha", "label": "unidha", "shape": "dot", "size": 4.162486200200359, "title": "PageRank: 0.0042"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "konten", "label": "konten", "shape": "dot", "size": 2.4670918501907964, "title": "PageRank: 0.0025"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "8238", "label": "8238", "shape": "dot", "size": 4.1727558754281455, "title": "PageRank: 0.0042"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "antara", "label": "antara", "shape": "dot", "size": 2.7741096611319436, "title": "PageRank: 0.0028"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "pembangunan", "label": "pembangunan", "shape": "dot", "size": 5.20833333333333, "title": "PageRank: 0.0052"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "this", "label": "this", "shape": "dot", "size": 5.208333333333333, "title": "PageRank: 0.0052"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "mempunyai", "label": "mempunyai", "shape": "dot", "size": 1.4669885544180197, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "random", "label": "random", "shape": "dot", "size": 2.0174349603017614, "title": "PageRank: 0.0020"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "yang", "label": "yang", "shape": "dot", "size": 51.22876229596852, "title": "PageRank: 0.0512"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "opini", "label": "opini", "shape": "dot", "size": 2.4219439937738447, "title": "PageRank: 0.0024"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "pengujian", "label": "pengujian", "shape": "dot", "size": 2.517616029178688, "title": "PageRank: 0.0025"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "sentiment", "label": "sentiment", "shape": "dot", "size": 5.546716928796538, "title": "PageRank: 0.0055"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "terstruktur", "label": "terstruktur", "shape": "dot", "size": 5.208333333333333, "title": "PageRank: 0.0052"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "komentar", "label": "komentar", "shape": "dot", "size": 18.90532017344839, "title": "PageRank: 0.0189"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "melakukan", "label": "melakukan", "shape": "dot", "size": 1.4678336049708274, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "membantu", "label": "membantu", "shape": "dot", "size": 1.4601243147191203, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "hingga", "label": "hingga", "shape": "dot", "size": 2.3091472981349077, "title": "PageRank: 0.0023"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "dictionary", "label": "dictionary", "shape": "dot", "size": 5.776887571743876, "title": "PageRank: 0.0058"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "2024", "label": "2024", "shape": "dot", "size": 8.193415384261456, "title": "PageRank: 0.0082"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "reasoner", "label": "reasoner", "shape": "dot", "size": 3.056603217421316, "title": "PageRank: 0.0031"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "bamalia_anjani", "label": "bamalia_anjani", "shape": "dot", "size": 3.621783483926708, "title": "PageRank: 0.0036"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "aplikasi", "label": "aplikasi", "shape": "dot", "size": 1.434640969364278, "title": "PageRank: 0.0014"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "dilakukan", "label": "dilakukan", "shape": "dot", "size": 7.2943486911444255, "title": "PageRank: 0.0073"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "didapatkan", "label": "didapatkan", "shape": "dot", "size": 3.752574964784836, "title": "PageRank: 0.0038"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "teknik", "label": "teknik", "shape": "dot", "size": 1.5730165607405204, "title": "PageRank: 0.0016"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "teks", "label": "teks", "shape": "dot", "size": 4.018182539429561, "title": "PageRank: 0.0040"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "journal", "label": "journal", "shape": "dot", "size": 4.018420946278364, "title": "PageRank: 0.0040"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "diunggah", "label": "diunggah", "shape": "dot", "size": 2.124222572981787, "title": "PageRank: 0.0021"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "text", "label": "text", "shape": "dot", "size": 13.780763895362162, "title": "PageRank: 0.0138"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "vader", "label": "vader", "shape": "dot", "size": 7.295243858103427, "title": "PageRank: 0.0073"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "analisis", "label": "analisis", "shape": "dot", "size": 7.789429006811697, "title": "PageRank: 0.0078"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "aware", "label": "aware", "shape": "dot", "size": 4.445760231046074, "title": "PageRank: 0.0044"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "dengan", "label": "dengan", "shape": "dot", "size": 18.023582678294577, "title": "PageRank: 0.0180"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "youtube", "label": "youtube", "shape": "dot", "size": 11.948898541203882, "title": "PageRank: 0.0119"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "https", "label": "https", "shape": "dot", "size": 3.4657026941147944, "title": "PageRank: 0.0035"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "tahapan", "label": "tahapan", "shape": "dot", "size": 5.469481296755098, "title": "PageRank: 0.0055"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "kedepannya", "label": "kedepannya", "shape": "dot", "size": 1.5595748993307053, "title": "PageRank: 0.0016"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ilustrasi", "label": "ilustrasi", "shape": "dot", "size": 1.2290959745433119, "title": "PageRank: 0.0012"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "tahun", "label": "tahun", "shape": "dot", "size": 1.54920727043549, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "bayes", "label": "bayes", "shape": "dot", "size": 20.67259521162841, "title": "PageRank: 0.0207"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "meliputi", "label": "meliputi", "shape": "dot", "size": 2.3309955126605564, "title": "PageRank: 0.0023"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "berlabel", "label": "berlabel", "shape": "dot", "size": 1.9873907140383054, "title": "PageRank: 0.0020"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "ilmu", "label": "ilmu", "shape": "dot", "size": 2.0135591340435686, "title": "PageRank: 0.0020"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "satu", "label": "satu", "shape": "dot", "size": 3.9354507672898524, "title": "PageRank: 0.0039"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "digital", "label": "digital", "shape": "dot", "size": 2.5661195357270024, "title": "PageRank: 0.0026"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "pada", "label": "pada", "shape": "dot", "size": 5.872615056423296, "title": "PageRank: 0.0059"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "diagram", "label": "diagram", "shape": "dot", "size": 5.368331762973949, "title": "PageRank: 0.0054"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "teknologi", "label": "teknologi", "shape": "dot", "size": 8.73435485199299, "title": "PageRank: 0.0087"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "issn", "label": "issn", "shape": "dot", "size": 7.698132100230137, "title": "PageRank: 0.0077"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "index", "label": "index", "shape": "dot", "size": 4.098574671066025, "title": "PageRank: 0.0041"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "informasi", "label": "informasi", "shape": "dot", "size": 10.631900597766467, "title": "PageRank: 0.0106"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "sistem", "label": "sistem", "shape": "dot", "size": 8.367302943967257, "title": "PageRank: 0.0084"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "negatif", "label": "negatif", "shape": "dot", "size": 2.3091472981349077, "title": "PageRank: 0.0023"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "fold", "label": "fold", "shape": "dot", "size": 10.662416496664179, "title": "PageRank: 0.0107"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "sosial", "label": "sosial", "shape": "dot", "size": 2.165272652290607, "title": "PageRank: 0.0022"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "available", "label": "available", "shape": "dot", "size": 4.737241572610295, "title": "PageRank: 0.0047"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "pembagian", "label": "pembagian", "shape": "dot", "size": 1.9281381006372673, "title": "PageRank: 0.0019"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "april", "label": "april", "shape": "dot", "size": 6.540236842376257, "title": "PageRank: 0.0065"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "menentukan", "label": "menentukan", "shape": "dot", "size": 1.4751258906033202, "title": "PageRank: 0.0015"}, {"color": "#97c2fc", "font": {"color": "black"}, "id": "digunakan", "label": "digunakan", "shape": "dot", "size": 5.123203613334058, "title": "PageRank: 0.0051"}]);
170 edges = new vis.DataSet([{"from": "berikut", "to": "adalah", "value": 2}, {"from": "berikut", "to": "sebagai", "value": 3}, {"from": "berikut", "to": "gambar", "value": 3}, {"from": "berikut", "to": "diagram", "value": 2}, {"from": "matrix", "to": "menggunakan", "value": 2}, {"from": "matrix", "to": "confusion", "value": 2}, {"from": "matrix", "to": "youtube", "value": 2}, {"from": "telah", "to": "yang", "value": 5}, {"from": "banyaknya", "to": "merupakan", "value": 2}, {"from": "banyaknya", "to": "kata", "value": 2}, {"from": "license", "to": "international", "value": 2}, {"from": "menjadi", "to": "memilah", "value": 2}, {"from": "menjadi", "to": "data", "value": 7}, {"from": "menjadi", "to": "train", "value": 4}, {"from": "menjadi", "to": "test", "value": 3}, {"from": "2964", "to": "8238", "value": 4}, {"from": "2964", "to": "issn", "value": 4}, {"from": "2964", "to": "2132", "value": 4}, {"from": "2964", "to": "jurnal", "value": 4}, {"from": "algoritma", "to": "naive", "value": 7}, {"from": "algoritma", "to": "bayes", "value": 8}, {"from": "algoritma", "to": "yang", "value": 2}, {"from": "algoritma", "to": "text", "value": 2}, {"from": "algoritma", "to": "mining", "value": 2}, {"from": "algoritma", "to": "klasifikasi", "value": 2}, {"from": "algoritma", "to": "menggunakan", "value": 2}, {"from": "jteksis", "to": "unidha", "value": 4}, {"from": "jteksis", "to": "index", "value": 4}, {"from": "jteksis", "to": "issn", "value": 4}, {"from": "jteksis", "to": "2655", "value": 4}, {"from": "jteksis", "to": "informasi", "value": 4}, {"from": "jteksis", "to": "bisnis", "value": 4}, {"from": "jteksis", "to": "april", "value": 4}, {"from": "jteksis", "to": "2024", "value": 4}, {"from": "valence", "to": "aware", "value": 2}, {"from": "valence", "to": "dictionary", "value": 2}, {"from": "dapat", "to": "penelitian", "value": 2}, {"from": "dapat", "to": "kedepannya", "value": 2}, {"from": "dapat", "to": "memberikan", "value": 2}, {"from": "dapat", "to": "yang", "value": 4}, {"from": "dapat", "to": "naive", "value": 2}, {"from": "dapat", "to": "bayes", "value": 2}, {"from": "media", "to": "youtube", "value": 2}, {"from": "media", "to": "sosial", "value": 2}, {"from": "pengguna", "to": "youtube", "value": 3}, {"from": "pengguna", "to": "mencapai", "value": 5}, {"from": "pengguna", "to": "miliar", "value": 2}, {"from": "pengguna", "to": "pada", "value": 2}, {"from": "pengguna", "to": "dengan", "value": 2}, {"from": "upnjatim", "to": "bamalia_anjani", "value": 2}, {"from": "upnjatim", "to": "cdhian", "value": 2}, {"from": "upnjatim", "to": "satria", "value": 2}, {"from": "berdasarkan", "to": "hasil", "value": 2}, {"from": "berdasarkan", "to": "pengujian", "value": 2}, {"from": "arti", "to": "yang", "value": 2}, {"from": "jumlah", "to": "dengan", "value": 3}, {"from": "jumlah", "to": "data", "value": 3}, {"from": "jumlah", "to": "sebanyak", "value": 2}, {"from": "kata", "to": "dengan", "value": 2}, {"from": "kata", "to": "kunci", "value": 3}, {"from": "kata", "to": "2022", "value": 2}, {"from": "kata", "to": "yang", "value": 3}, {"from": "kata", "to": "daftar", "value": 2}, {"from": "kata", "to": "dalam", "value": 3}, {"from": "kata", "to": "teks", "value": 3}, {"from": "recall", "to": "score", "value": 3}, {"from": "recall", "to": "precision", "value": 3}, {"from": "2132", "to": "issn", "value": 4}, {"from": "2132", "to": "jurnal", "value": 4}, {"from": "2132", "to": "teknologi", "value": 4}, {"from": "precision", "to": "score", "value": 3}, {"from": "daftar", "to": "yang", "value": 2}, {"from": "daftar", "to": "adalah", "value": 2}, {"from": "kumpulan", "to": "dokumen", "value": 2}, {"from": "kumpulan", "to": "dari", "value": 2}, {"from": "reviewed", "to": "2024", "value": 2}, {"from": "accepted", "to": "2024", "value": 2}, {"from": "merupakan", "to": "youtube", "value": 2}, {"from": "merupakan", "to": "salah", "value": 3}, {"from": "merupakan", "to": "satu", "value": 3}, {"from": "februari", "to": "2022", "value": 2}, {"from": "19215", "to": "data", "value": 5}, {"from": "19215", "to": "sebanyak", "value": 4}, {"from": "19215", "to": "komentar", "value": 6}, {"from": "19215", "to": "yang", "value": 2}, {"from": "salah", "to": "satu", "value": 3}, {"from": "mengetahui", "to": "untuk", "value": 2}, {"from": "penelitian", "to": "global", "value": 2}, {"from": "penelitian", "to": "metode", "value": 5}, {"from": "penelitian", "to": "dalam", "value": 4}, {"from": "penelitian", "to": "penelitian", "value": 2}, {"from": "penelitian", "to": "menggunakan", "value": 2}, {"from": "penelitian", "to": "yang", "value": 2}, {"from": "penelitian", "to": "digunakan", "value": 4}, {"from": "sehingga", "to": "data", "value": 2}, {"from": "alir", "to": "diagram", "value": 5}, {"from": "alir", "to": "text", "value": 3}, {"from": "alir", "to": "mining", "value": 2}, {"from": "alir", "to": "gambar", "value": 2}, {"from": "alir", "to": "klasifikasi", "value": 2}, {"from": "metode", "to": "tinggi", "value": 3}, {"from": "metode", "to": "menggunakan", "value": 3}, {"from": "metode", "to": "naive", "value": 4}, {"from": "metode", "to": "bayes", "value": 4}, {"from": "metode", "to": "yang", "value": 2}, {"from": "metode", "to": "dengan", "value": 4}, {"from": "accuracy", "to": "score", "value": 2}, {"from": "selanjutnya", "to": "dilakukan", "value": 3}, {"from": "mengatasi", "to": "masalah", "value": 2}, {"from": "validation", "to": "cross", "value": 17}, {"from": "validation", "to": "fold", "value": 17}, {"from": "validation", "to": "bayes", "value": 4}, {"from": "validation", "to": "sebanyak", "value": 2}, {"from": "validation", "to": "untuk", "value": 2}, {"from": "validation", "to": "ilustrasi", "value": 2}, {"from": "universitas", "to": "pembangunan", "value": 2}, {"from": "universitas", "to": "nasional", "value": 2}, {"from": "diolah", "to": "yang", "value": 2}, {"from": "pandemi", "to": "covid", "value": 2}, {"from": "pengambilan", "to": "dalam", "value": 2}, {"from": "pengambilan", "to": "sampel", "value": 2}, {"from": "pengambilan", "to": "fold", "value": 2}, {"from": "test", "to": "untuk", "value": 2}, {"from": "test", "to": "train", "value": 4}, {"from": "test", "to": "data", "value": 9}, {"from": "sentimen", "to": "analisis", "value": 8}, {"from": "sentimen", "to": "komentar", "value": 2}, {"from": "sentimen", "to": "dengan", "value": 2}, {"from": "sentimen", "to": "menggunakan", "value": 2}, {"from": "sentimen", "to": "dari", "value": 2}, {"from": "sentimen", "to": "aplikasi", "value": 2}, {"from": "masalah", "to": "global", "value": 2}, {"from": "2022", "to": "summit", "value": 4}, {"from": "2022", "to": "tingkat", "value": 5}, {"from": "2022", "to": "tinggi", "value": 5}, {"from": "2022", "to": "yang", "value": 2}, {"from": "2022", "to": "global", "value": 2}, {"from": "2022", "to": "pada", "value": 2}, {"from": "2022", "to": "kunci", "value": 2}, {"from": "2022", "to": "tanggal", "value": 2}, {"from": "2022", "to": "online", "value": 3}, {"from": "2022", "to": "available", "value": 3}, {"from": "2022", "to": "digital", "value": 2}, {"from": "2022", "to": "indonesia", "value": 3}, {"from": "mengurangi", "to": "bias", "value": 2}, {"from": "mengurangi", "to": "yang", "value": 2}, {"from": "bias", "to": "yang", "value": 2}, {"from": "jurnal", "to": "teknologi", "value": 13}, {"from": "jurnal", "to": "sistem", "value": 10}, {"from": "jurnal", "to": "2024", "value": 4}, {"from": "jurnal", "to": "http", "value": 4}, {"from": "jurnal", "to": "unidha", "value": 4}, {"from": "jurnal", "to": "index", "value": 4}, {"from": "jurnal", "to": "forest", "value": 2}, {"from": "jurnal", "to": "komputasi", "value": 2}, {"from": "jurnal", "to": "informasi", "value": 2}, {"from": "http", "to": "april", "value": 4}, {"from": "http", "to": "2024", "value": 4}, {"from": "http", "to": "unidha", "value": 4}, {"from": "klasifikasi", "to": "naive", "value": 3}, {"from": "klasifikasi", "to": "bayes", "value": 2}, {"from": "klasifikasi", "to": "menggunakan", "value": 4}, {"from": "klasifikasi", "to": "yang", "value": 2}, {"from": "klasifikasi", "to": "diagram", "value": 2}, {"from": "lain", "to": "antara", "value": 2}, {"from": "lain", "to": "tahapan", "value": 2}, {"from": "dalam", "to": "berkomentar", "value": 3}, {"from": "dalam", "to": "opini", "value": 2}, {"from": "dalam", "to": "yang", "value": 5}, {"from": "dalam", "to": "digunakan", "value": 2}, {"from": "dalam", "to": "dengan", "value": 2}, {"from": "dalam", "to": "text", "value": 3}, {"from": "dalam", "to": "sampel", "value": 2}, {"from": "dalam", "to": "data", "value": 2}, {"from": "dalam", "to": "teks", "value": 2}, {"from": "dalam", "to": "membantu", "value": 2}, {"from": "adalah", "to": "yang", "value": 3}, {"from": "adalah", "to": "text", "value": 2}, {"from": "adalah", "to": "preprocessing", "value": 2}, {"from": "adalah", "to": "proses", "value": 2}, {"from": "adalah", "to": "pada", "value": 2}, {"from": "sebanyak", "to": "data", "value": 3}, {"from": "sebanyak", "to": "komentar", "value": 3}, {"from": "memilah", "to": "untuk", "value": 2}, {"from": "memilah", "to": "data", "value": 2}, {"from": "na\u00efve", "to": "bayes", "value": 3}, {"from": "9324", "to": "positif", "value": 2}, {"from": "9324", "to": "komentar", "value": 2}, {"from": "with", "to": "bayes", "value": 2}, {"from": "video", "to": "youtube", "value": 4}, {"from": "video", "to": "konten", "value": 2}, {"from": "video", "to": "yang", "value": 8}, {"from": "video", "to": "diunggah", "value": 2}, {"from": "video", "to": "dengan", "value": 2}, {"from": "video", "to": "didapatkan", "value": 2}, {"from": "video", "to": "dari", "value": 2}, {"from": "atau", "to": "yang", "value": 2}, {"from": "atau", "to": "vader", "value": 2}, {"from": "atau", "to": "komentar", "value": 6}, {"from": "atau", "to": "mendapatkan", "value": 2}, {"from": "atau", "to": "label", "value": 2}, {"from": "atau", "to": "data", "value": 4}, {"from": "sampel", "to": "fold", "value": 2}, {"from": "sampel", "to": "cross", "value": 2}, {"from": "akurasi", "to": "hasil", "value": 2}, {"from": "akurasi", "to": "yang", "value": 2}, {"from": "berkomentar", "to": "opini", "value": 2}, {"from": "confusion", "to": "menggunakan", "value": 2}, {"from": "setelah", "to": "text", "value": 2}, {"from": "komputer", "to": "informasi", "value": 2}, {"from": "komputer", "to": "ilmu", "value": 2}, {"from": "mining", "to": "text", "value": 6}, {"from": "timur", "to": "veteran", "value": 2}, {"from": "timur", "to": "jawa", "value": 2}, {"from": "proses", "to": "analisis", "value": 2}, {"from": "stemming", "to": "vader", "value": 2}, {"from": "indonesia", "to": "digital", "value": 2}, {"from": "naive", "to": "menggunakan", "value": 8}, {"from": "naive", "to": "bayes", "value": 24}, {"from": "naive", "to": "vader", "value": 2}, {"from": "naive", "to": "cross", "value": 3}, {"from": "naive", "to": "dengan", "value": 3}, {"from": "naive", "to": "untuk", "value": 2}, {"from": "tidak", "to": "yang", "value": 2}, {"from": "struktur", "to": "data", "value": 2}, {"from": "nilai", "to": "untuk", "value": 2}, {"from": "veteran", "to": "pembangunan", "value": 2}, {"from": "veteran", "to": "nasional", "value": 2}, {"from": "veteran", "to": "jawa", "value": 2}, {"from": "pembuatan", "to": "model", "value": 2}, {"from": "9891", "to": "komentar", "value": 3}, {"from": "9891", "to": "data", "value": 2}, {"from": "setiap", "to": "data", "value": 3}, {"from": "konferensi", "to": "youtube", "value": 3}, {"from": "konferensi", "to": "tingkat", "value": 8}, {"from": "konferensi", "to": "tinggi", "value": 8}, {"from": "mudah", "to": "yang", "value": 2}, {"from": "terhadap", "to": "yang", "value": 3}, {"from": "kunci", "to": "dengan", "value": 2}, {"from": "kunci", "to": "yang", "value": 2}, {"from": "sangat", "to": "yang", "value": 2}, {"from": "sangat", "to": "negatif", "value": 2}, {"from": "sangat", "to": "hingga", "value": 2}, {"from": "train", "to": "data", "value": 9}, {"from": "positif", "to": "komentar", "value": 2}, {"from": "untuk", "to": "mendapatkan", "value": 2}, {"from": "untuk", "to": "data", "value": 6}, {"from": "untuk", "to": "bayes", "value": 2}, {"from": "untuk", "to": "menentukan", "value": 2}, {"from": "research", "to": "this", "value": 2}, {"from": "mendapatkan", "to": "data", "value": 2}, {"from": "mendapatkan", "to": "komentar", "value": 3}, {"from": "mendapatkan", "to": "label", "value": 2}, {"from": "akan", "to": "yang", "value": 2}, {"from": "akan", "to": "dilakukan", "value": 2}, {"from": "online", "to": "available", "value": 3}, {"from": "online", "to": "https", "value": 3}, {"from": "2655", "to": "issn", "value": 8}, {"from": "2655", "to": "8238", "value": 4}, {"from": "menggunakan", "to": "tingkat", "value": 2}, {"from": "menggunakan", "to": "tinggi", "value": 2}, {"from": "menggunakan", "to": "youtube", "value": 5}, {"from": "menggunakan", "to": "vader", "value": 6}, {"from": "menggunakan", "to": "bayes", "value": 4}, {"from": "menggunakan", "to": "dengan", "value": 6}, {"from": "menggunakan", "to": "model", "value": 2}, {"from": "menggunakan", "to": "data", "value": 2}, {"from": "menggunakan", "to": "pada", "value": 2}, {"from": "menggunakan", "to": "dari", "value": 2}, {"from": "menggunakan", "to": "fold", "value": 2}, {"from": "menggunakan", "to": "cross", "value": 2}, {"from": "tinggi", "to": "tingkat", "value": 8}, {"from": "tinggi", "to": "yang", "value": 2}, {"from": "sebagai", "to": "gambar", "value": 2}, {"from": "mencapai", "to": "youtube", "value": 2}, {"from": "mencapai", "to": "miliar", "value": 2}, {"from": "data", "to": "comment", "value": 2}, {"from": "data", "to": "cross", "value": 2}, {"from": "data", "to": "komentar", "value": 11}, {"from": "data", "to": "dengan", "value": 5}, {"from": "data", "to": "pelabelan", "value": 2}, {"from": "data", "to": "bayes", "value": 2}, {"from": "data", "to": "dari", "value": 4}, {"from": "data", "to": "yang", "value": 6}, {"from": "data", "to": "diperoleh", "value": 2}, {"from": "data", "to": "didapatkan", "value": 2}, {"from": "data", "to": "teks", "value": 2}, {"from": "data", "to": "agar", "value": 2}, {"from": "data", "to": "membagi", "value": 2}, {"from": "data", "to": "data", "value": 4}, {"from": "data", "to": "pembagian", "value": 2}, {"from": "data", "to": "hasil", "value": 2}, {"from": "data", "to": "analisis", "value": 5}, {"from": "data", "to": "maupun", "value": 2}, {"from": "data", "to": "berlabel", "value": 2}, {"from": "cross", "to": "fold", "value": 13}, {"from": "cross", "to": "bayes", "value": 2}, {"from": "cross", "to": "gambar", "value": 2}, {"from": "lebih", "to": "terstruktur", "value": 2}, {"from": "diakses", "to": "yang", "value": 2}, {"from": "penting", "to": "yang", "value": 2}, {"from": "kemudian", "to": "yang", "value": 2}, {"from": "kemudian", "to": "dilakukan", "value": 2}, {"from": "dari", "to": "yang", "value": 4}, {"from": "dari", "to": "komentar", "value": 2}, {"from": "dari", "to": "tahapan", "value": 2}, {"from": "dari", "to": "hasil", "value": 2}, {"from": "dari", "to": "analisis", "value": 2}, {"from": "agar", "to": "teks", "value": 2}, {"from": "international", "to": "journal", "value": 2}, {"from": "nasional", "to": "pembangunan", "value": 2}, {"from": "nasional", "to": "jawa", "value": 2}, {"from": "pelabelan", "to": "text", "value": 2}, {"from": "pelabelan", "to": "preprocessing", "value": 2}, {"from": "hasil", "to": "pengujian", "value": 2}, {"from": "hasil", "to": "dengan", "value": 3}, {"from": "hasil", "to": "bayes", "value": 2}, {"from": "hasil", "to": "yang", "value": 7}, {"from": "hasil", "to": "diperoleh", "value": 2}, {"from": "hasil", "to": "analisis", "value": 2}, {"from": "bisnis", "to": "sistem", "value": 10}, {"from": "bisnis", "to": "informasi", "value": 10}, {"from": "bisnis", "to": "april", "value": 8}, {"from": "bisnis", "to": "2024", "value": 4}, {"from": "diperoleh", "to": "yang", "value": 5}, {"from": "tingkat", "to": "youtube", "value": 2}, {"from": "gambar", "to": "diagram", "value": 2}, {"from": "forest", "to": "random", "value": 2}, {"from": "model", "to": "dengan", "value": 2}, {"from": "preprocessing", "to": "text", "value": 12}, {"from": "preprocessing", "to": "dilakukan", "value": 3}, {"from": "preprocessing", "to": "melakukan", "value": 2}, {"from": "unidha", "to": "index", "value": 4}, {"from": "konten", "to": "yang", "value": 3}, {"from": "8238", "to": "issn", "value": 8}, {"from": "mempunyai", "to": "yang", "value": 2}, {"from": "yang", "to": "bayes", "value": 2}, {"from": "yang", "to": "diunggah", "value": 2}, {"from": "yang", "to": "dengan", "value": 3}, {"from": "yang", "to": "digunakan", "value": 3}, {"from": "yang", "to": "komentar", "value": 5}, {"from": "yang", "to": "dilakukan", "value": 2}, {"from": "yang", "to": "didapatkan", "value": 5}, {"from": "yang", "to": "pada", "value": 3}, {"from": "sentiment", "to": "vader", "value": 3}, {"from": "sentiment", "to": "aware", "value": 2}, {"from": "sentiment", "to": "dictionary", "value": 2}, {"from": "sentiment", "to": "reasoner", "value": 2}, {"from": "komentar", "to": "analisis", "value": 2}, {"from": "komentar", "to": "youtube", "value": 2}, {"from": "komentar", "to": "dilakukan", "value": 2}, {"from": "komentar", "to": "berlabel", "value": 2}, {"from": "dictionary", "to": "aware", "value": 2}, {"from": "dictionary", "to": "reasoner", "value": 2}, {"from": "2024", "to": "april", "value": 8}, {"from": "2024", "to": "2024", "value": 2}, {"from": "dilakukan", "to": "text", "value": 2}, {"from": "teknik", "to": "digunakan", "value": 2}, {"from": "text", "to": "diagram", "value": 3}, {"from": "vader", "to": "bayes", "value": 2}, {"from": "vader", "to": "dengan", "value": 2}, {"from": "dengan", "to": "bayes", "value": 5}, {"from": "dengan", "to": "fold", "value": 3}, {"from": "dengan", "to": "youtube", "value": 3}, {"from": "dengan", "to": "pembagian", "value": 2}, {"from": "youtube", "to": "youtube", "value": 2}, {"from": "https", "to": "available", "value": 3}, {"from": "tahapan", "to": "meliputi", "value": 2}, {"from": "tahun", "to": "pada", "value": 2}, {"from": "bayes", "to": "fold", "value": 2}, {"from": "ilmu", "to": "informasi", "value": 2}, {"from": "teknologi", "to": "sistem", "value": 10}, {"from": "teknologi", "to": "informasi", "value": 14}, {"from": "issn", "to": "index", "value": 4}, {"from": "informasi", "to": "sistem", "value": 10}, {"from": "informasi", "to": "april", "value": 4}]);
171
172 nodeColors = {};
173 allNodes = nodes.get({ returnType: "Object" });
174 for (nodeId in allNodes) {
175 nodeColors[nodeId] = allNodes[nodeId].color;
176 }
177 allEdges = edges.get({ returnType: "Object" });
178 // adding nodes and edges to the graph
179 data = {nodes: nodes, edges: edges};
180
181 var options = {
182 "configure": {
183 "enabled": false
184 },
185 "edges": {
186 "color": {
187 "inherit": true
188 },
189 "smooth": {
190 "enabled": true,
191 "type": "dynamic"
192 }
193 },
194 "interaction": {
195 "dragNodes": true,
196 "hideEdgesOnDrag": false,
197 "hideNodesOnDrag": false
198 },
199 "physics": {
200 "enabled": true,
201 "stabilization": {
202 "enabled": true,
203 "fit": true,
204 "iterations": 1000,
205 "onlyDynamicEdges": false,
206 "updateInterval": 50
207 }
208 }
209};
210
211
212
213
214
215
216 network = new vis.Network(container, data, options);
217
218
219
220
221
222
223
224
225
226 network.on("stabilizationProgress", function(params) {
227 document.getElementById('loadingBar').removeAttribute("style");
228 var maxWidth = 496;
229 var minWidth = 20;
230 var widthFactor = params.iterations/params.total;
231 var width = Math.max(minWidth,maxWidth * widthFactor);
232 document.getElementById('bar').style.width = width + 'px';
233 document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
234 });
235 network.once("stabilizationIterationsDone", function() {
236 document.getElementById('text').innerHTML = '100%';
237 document.getElementById('bar').style.width = '496px';
238 document.getElementById('loadingBar').style.opacity = 0;
239 // really clean the dom element
240 setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
241 });
242
243
244 return network;
245
246 }
247 drawGraph();
248 </script>
249 </body>
250</html>