-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaff_net_cluster_1.json
14721 lines (14721 loc) · 270 KB
/
aff_net_cluster_1.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"network": {
"items": [
{
"id": 1,
"label": "arizona state university, tempe, az, united states",
"x": -0.2101,
"y": -0.0762,
"cluster": 1,
"weights": {
"Links": 17.0000,
"Total link strength": 20.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2020.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 2,
"label": "athabasca university, faculty of business 301, 22 sir winston churchill avenue, st. albert, ab t8n 1b4, canada",
"x": 1.1509,
"y": -0.0129,
"cluster": 5,
"weights": {
"Links": 6.0000,
"Total link strength": 6.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2012.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 3,
"label": "beijer institute of ecological economics, royal swedish academy of sciences, stockholm, sweden",
"x": -0.2493,
"y": -0.0516,
"cluster": 6,
"weights": {
"Links": 17.0000,
"Total link strength": 18.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2022.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 4,
"label": "bialystok university of technology, 45 awiejska street, bialystok, 15-351, poland",
"x": 0.0765,
"y": 0.6457,
"cluster": 7,
"weights": {
"Links": 1.0000,
"Total link strength": 1.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2021.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 5,
"label": "bioeconomy and environment, natural resources institute finland, helsinki, finland",
"x": -0.1608,
"y": 0.0560,
"cluster": 8,
"weights": {
"Links": 4.0000,
"Total link strength": 4.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2019.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 6,
"label": "business admin and digital media faculty, college of menominee nation, n172 state highway 47/55, keshena, wi 54135, united states",
"x": 0.0646,
"y": -0.0278,
"cluster": 9,
"weights": {
"Links": 9.0000,
"Total link strength": 9.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2023.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 7,
"label": "california lutheran university, school of business, 60 west olsen #3500, thousand oaks, ca 91360, united states",
"x": 1.1515,
"y": -0.0139,
"cluster": 10,
"weights": {
"Links": 6.0000,
"Total link strength": 6.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2012.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 8,
"label": "cense-center for environmental and sustainability research & change—global change and sustainability institute, nova school of science and technology, nova university lisbon, caparica, 2829-516, portugal",
"x": -0.2458,
"y": -0.0346,
"cluster": 11,
"weights": {
"Links": 32.0000,
"Total link strength": 32.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2023.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 9,
"label": "center for global sustainability and cultural transformation (gcsc), leuphana universität lüneburg, lüneburg, germany",
"x": -0.2482,
"y": -0.0884,
"cluster": 12,
"weights": {
"Links": 11.0000,
"Total link strength": 12.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2021.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 10,
"label": "center for global sustainability and cultural transformation, arizona state university, tempe, az, united states",
"x": -0.2414,
"y": -0.0659,
"cluster": 1,
"weights": {
"Links": 57.0000,
"Total link strength": 71.0000,
"Documents": 2.0000,
"Citations": 0.0000,
"Norm. citations": 2.0000
},
"scores": {
"Avg. pub. year": 2020.5000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 11,
"label": "center for global sustainability and cultural transformation, leuphana university of lüneburg, lüneburg, germany",
"x": -0.2415,
"y": -0.0661,
"cluster": 1,
"weights": {
"Links": 57.0000,
"Total link strength": 71.0000,
"Documents": 2.0000,
"Citations": 0.0000,
"Norm. citations": 2.0000
},
"scores": {
"Avg. pub. year": 2020.5000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 12,
"label": "center for global sustainability and cultural transformation, leuphana universität lüneburg, lüneburg, 21335, germany",
"x": -0.3546,
"y": -0.0341,
"cluster": 13,
"weights": {
"Links": 5.0000,
"Total link strength": 5.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2021.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 13,
"label": "centre for assessment research, policy and practice in education, institute of education, dublin city university, dublin, ireland",
"x": -0.2699,
"y": -0.2463,
"cluster": 14,
"weights": {
"Links": 3.0000,
"Total link strength": 3.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2023.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 14,
"label": "centre for ecology, evolution and environmental changes, faculdade de ciências da universidade de lisboa, lisboa, 1649-004, portugal",
"x": -0.2408,
"y": -0.0533,
"cluster": 15,
"weights": {
"Links": 31.0000,
"Total link strength": 32.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2019.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 15,
"label": "centre for education in social sector (cedss), s.p. jain institute of management and research, mumbai, india",
"x": -0.2415,
"y": 0.2871,
"cluster": 16,
"weights": {
"Links": 2.0000,
"Total link strength": 2.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2017.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 16,
"label": "centre for research on activity, development and learning, faculty of behavioural sciences, university of helsinki, helsinki, finland",
"x": 0.4554,
"y": -0.0530,
"cluster": 17,
"weights": {
"Links": 4.0000,
"Total link strength": 4.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2016.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 17,
"label": "centre for university teaching and learning, hype, university of helsinki, helsinki, finland",
"x": -0.1643,
"y": 0.0582,
"cluster": 18,
"weights": {
"Links": 4.0000,
"Total link strength": 4.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2019.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 18,
"label": "cfe-centre for functional ecology, universidade de coimbra, coimbra, 3000-456, portugal",
"x": -0.2454,
"y": -0.0352,
"cluster": 19,
"weights": {
"Links": 32.0000,
"Total link strength": 32.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2023.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 19,
"label": "chemical, food and environmental engineering department, universidad de las américas puebla, puebla, mexico",
"x": -0.2430,
"y": -0.0306,
"cluster": 20,
"weights": {
"Links": 28.0000,
"Total link strength": 28.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2022.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 20,
"label": "cities research institute, school of engineering and built environment, griffith university, brisbane, australia",
"x": -0.2402,
"y": -0.0321,
"cluster": 21,
"weights": {
"Links": 28.0000,
"Total link strength": 28.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2022.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 21,
"label": "city of tempeaz, united states",
"x": -0.8855,
"y": 0.1811,
"cluster": 22,
"weights": {
"Links": 1.0000,
"Total link strength": 1.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2017.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 22,
"label": "college of business administration, american university in the emirates, dubai international academic city, p.o. box 503000, dubai, united arab emirates",
"x": -0.3059,
"y": 0.6454,
"cluster": 23,
"weights": {
"Links": 4.0000,
"Total link strength": 4.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2022.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 23,
"label": "copenhagen business school, frederiksberg, denmark",
"x": -0.1622,
"y": -0.0313,
"cluster": 24,
"weights": {
"Links": 4.0000,
"Total link strength": 4.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2021.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 24,
"label": "departamento de ciencias humanas y de la educación, universidad pública de navarra, pamplona, navarra, 31006, spain",
"x": 0.0949,
"y": -0.0477,
"cluster": 25,
"weights": {
"Links": 8.0000,
"Total link strength": 8.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2020.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 25,
"label": "departamento de ciencias, universidad pública de navarra, pamplona, navarra, 31006, spain",
"x": 0.0949,
"y": -0.0488,
"cluster": 26,
"weights": {
"Links": 8.0000,
"Total link strength": 8.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2020.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 26,
"label": "departamento de ciências e tecnologia & centro de estudos globais, universidade aberta (uab), lisbon, 1000-013, portugal",
"x": -0.2456,
"y": -0.0341,
"cluster": 27,
"weights": {
"Links": 32.0000,
"Total link strength": 32.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2023.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 27,
"label": "department of accounting and finance, universidad loyola andalucía, córdoba, spain",
"x": 1.0203,
"y": -0.7091,
"cluster": 28,
"weights": {
"Links": 2.0000,
"Total link strength": 2.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2018.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 28,
"label": "department of accounting and finance, university of seville, seville, spain",
"x": 0.5257,
"y": -0.1666,
"cluster": 29,
"weights": {
"Links": 5.0000,
"Total link strength": 5.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2014.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 29,
"label": "department of anthropology, university of maryland, college park, md, united states",
"x": -0.2533,
"y": -0.0417,
"cluster": 30,
"weights": {
"Links": 15.0000,
"Total link strength": 15.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2022.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 30,
"label": "department of apparel, textiles, and interior design, kansas state university, manhattan, ks, united states",
"x": -0.2981,
"y": -0.1376,
"cluster": 31,
"weights": {
"Links": 20.0000,
"Total link strength": 21.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2013.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 31,
"label": "department of biology education, leibniz institute for science and mathematics education (ipn), kiel university, olshausenstrasse 62, kiel, 24118, germany",
"x": -0.0853,
"y": -0.2592,
"cluster": 32,
"weights": {
"Links": 2.0000,
"Total link strength": 2.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2018.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 32,
"label": "department of built environment, faculty of engineering, built environment and information technology, central university of technology, bloemfontein, south africa",
"x": -0.2425,
"y": -0.0296,
"cluster": 33,
"weights": {
"Links": 28.0000,
"Total link strength": 28.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2022.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 33,
"label": "department of business organizations, universidad autónoma de madrid, madrid, 28049, spain",
"x": -0.2851,
"y": 0.4918,
"cluster": 34,
"weights": {
"Links": 4.0000,
"Total link strength": 4.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2022.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 34,
"label": "department of business, kristianstad university, kristianstad, sweden",
"x": -0.1756,
"y": 0.1004,
"cluster": 35,
"weights": {
"Links": 7.0000,
"Total link strength": 7.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2022.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 35,
"label": "department of civil engineering, faculty of engineering, european university of lefke, north cyprus, mersin, turkey",
"x": -0.2416,
"y": -0.0302,
"cluster": 36,
"weights": {
"Links": 28.0000,
"Total link strength": 28.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2022.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 36,
"label": "department of communication and education, universidad loyola andalucía, seville, 41014, spain",
"x": -0.2991,
"y": 0.1184,
"cluster": 37,
"weights": {
"Links": 3.0000,
"Total link strength": 3.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2018.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 37,
"label": "department of computer science, ntnu-norwegian university of science and technology, gjøvik, 2815, norway",
"x": -0.2598,
"y": -0.0402,
"cluster": 38,
"weights": {
"Links": 14.0000,
"Total link strength": 14.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2020.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 38,
"label": "department of continuing education, university of warwick, coventry cv4 7al, united kingdom",
"x": -1.5341,
"y": -1.1187,
"cluster": 39,
"weights": {
"Links": 1.0000,
"Total link strength": 1.0000,
"Documents": 2.0000,
"Citations": 0.0000,
"Norm. citations": 2.0000
},
"scores": {
"Avg. pub. year": 1996.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 39,
"label": "department of culinary art vocational education, yogyakarta state university, jl. colombo no.1, yogyakarta, 55281, indonesia",
"x": 7.1609,
"y": 0.2276,
"cluster": 40,
"weights": {
"Links": 1.0000,
"Total link strength": 1.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2020.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 40,
"label": "department of dance, kongju national university, kongju, 32588, south korea",
"x": -0.2319,
"y": -0.0563,
"cluster": 41,
"weights": {
"Links": 14.0000,
"Total link strength": 14.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2021.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 41,
"label": "department of design, housing, and merchandising, oklahoma state university, stillwater, ok, united states",
"x": -0.2981,
"y": -0.1375,
"cluster": 42,
"weights": {
"Links": 20.0000,
"Total link strength": 21.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2013.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 42,
"label": "department of earth and environment, boston university, boston, ma, united states",
"x": -0.8355,
"y": 0.3052,
"cluster": 43,
"weights": {
"Links": 1.0000,
"Total link strength": 1.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2021.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 43,
"label": "department of earth and environmental sciences, furman university, greenville, sc, united states",
"x": -0.2377,
"y": -0.0425,
"cluster": 44,
"weights": {
"Links": 58.0000,
"Total link strength": 59.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2021.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 44,
"label": "department of eco-technology, vives university of applied sciences, brugge, 8200, belgium",
"x": -0.0370,
"y": -0.0562,
"cluster": 45,
"weights": {
"Links": 14.0000,
"Total link strength": 14.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2022.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 45,
"label": "department of economics and public finance, universidad autónoma de madrid, madrid, 28049, spain",
"x": -0.2884,
"y": 0.4921,
"cluster": 46,
"weights": {
"Links": 4.0000,
"Total link strength": 4.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2022.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 46,
"label": "department of economics, s.p. jain institute of management and research, mumbai, india",
"x": -0.2167,
"y": 0.2952,
"cluster": 47,
"weights": {
"Links": 2.0000,
"Total link strength": 2.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2017.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 47,
"label": "department of education and psychology, cidtff - research centre on didactics and technology in the education of trainers, university of aveiro, aveiro, portugal",
"x": -0.2271,
"y": -0.1055,
"cluster": 48,
"weights": {
"Links": 7.0000,
"Total link strength": 7.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2023.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 48,
"label": "department of education theory and social pedagogy, faculty of education, universidad nacional de educación a distancia (uned), c/juan del rosal, 14, madrid, 28040, spain",
"x": -0.8642,
"y": 1.0031,
"cluster": 49,
"weights": {
"Links": 1.0000,
"Total link strength": 1.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2017.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 49,
"label": "department of education, cultural heritage and tourism, university of macerata, macerata, 62100, italy",
"x": -0.3048,
"y": 0.1161,
"cluster": 50,
"weights": {
"Links": 3.0000,
"Total link strength": 3.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2018.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 50,
"label": "department of education, faculty of education and social sciences, university of vechta, vechta, germany",
"x": -0.2391,
"y": -0.0422,
"cluster": 51,
"weights": {
"Links": 58.0000,
"Total link strength": 59.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2021.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 51,
"label": "department of education, faculty of social and behavioural sciences, utrecht university, utrecht, netherlands",
"x": 0.5137,
"y": -0.0565,
"cluster": 52,
"weights": {
"Links": 3.0000,
"Total link strength": 3.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2012.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 52,
"label": "department of education, languages, interculture and psychology, university of florence, florence, 50121, italy",
"x": -0.2431,
"y": -0.0361,
"cluster": 53,
"weights": {
"Links": 43.0000,
"Total link strength": 43.0000,
"Documents": 1.0000,
"Citations": 0.0000,
"Norm. citations": 1.0000
},
"scores": {
"Avg. pub. year": 2019.0000,
"Avg. citations": 0.0000,
"Avg. norm. citations": 1.0000
}
},
{
"id": 53,
"label": "department of education, school of education and social sciences, frederick university, nicosia, 1036, cyprus",
"x": -0.2424,
"y": -0.0366,
"cluster": 54,
"weights": {
"Links": 43.0000,
"Total link strength": 43.0000,