@@ -138,6 +138,62 @@ function sparseScatterPlot() {
138
138
}
139
139
140
140
datasets . push ( points ) ;
141
+
142
+ // let points = [];
143
+ // let dim = 16;
144
+ // //Extreme of each coordinates
145
+ // //Cluster 1
146
+ // for (let i = 0; i < 8; i++) {
147
+ // let point = [];
148
+ // for (let j = 0; j < dim; j++) {
149
+ // if (j < dim / 3) {
150
+ // point.push(10 + random());
151
+ // } else {
152
+ // point.push(random());
153
+ // }
154
+ // }
155
+ // point.data = 'green';
156
+ // points.push(point);
157
+ // }
158
+ // //Cluster 2
159
+ // for (let i = 0; i < 8; i++) {
160
+ // let point = [];
161
+ // for (let j = 0; j < dim; j++) {
162
+ // if (j >= dim / 3 && j < 2 * dim / 3) {
163
+ // point.push(10 + random());
164
+ // } else {
165
+ // point.push(random());
166
+ // }
167
+ // }
168
+ // point.data = 'blue';
169
+ // points.push(point);
170
+ // }
171
+ //
172
+ // //Cluster 3
173
+ // for (let i = 0; i < 8; i++) {
174
+ // let point = [];
175
+ // for (let j = 0; j < dim; j++) {
176
+ // if (j >= 2 * dim / 3 && j < dim) {
177
+ // point.push(10 + random());
178
+ // } else {
179
+ // point.push(random());
180
+ // }
181
+ // }
182
+ // point.data = 'black';
183
+ // points.push(point);
184
+ // }
185
+ //
186
+ // //Cluster 4
187
+ // for (let i = 0; i < 6; i++) {
188
+ // let point = [];
189
+ // for (let j = 0; j < dim; j++) {
190
+ // point.push(10 + random());
191
+ // }
192
+ // point.data = 'red';
193
+ // points.push(point);
194
+ // }
195
+ //
196
+ // datasets.push(points);
141
197
}
142
198
143
199
/***********CLUMPY 3 CLUSTERS*******************/
@@ -303,7 +359,8 @@ function draw(points) {
303
359
incrementB : 5 ,
304
360
decrementA : 0.9 ,
305
361
decrementB : 0 ,
306
- distanceWeights : [ 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 ]
362
+ // distanceWeights: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
363
+
307
364
} ;
308
365
// let scagOptions = {};
309
366
scag = scagnosticsnd ( points , scagOptions ) ;
@@ -382,4 +439,4 @@ function displayScagScores(scag) {
382
439
d3 . select ( '#skinnyScoreMsg' ) . html ( scag . skinnyScore ) ;
383
440
d3 . select ( '#stringyScoreMsg' ) . html ( scag . stringyScore ) ;
384
441
d3 . select ( '#monotonicScoreMsg' ) . html ( scag . monotonicScore ) ;
385
- }
442
+ }
0 commit comments