-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcocitation_net.json
30026 lines (30026 loc) · 569 KB
/
cocitation_net.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": 69,
"label": "(1988) initial criteria and guidelines for staff development, , (london, national council for vocational qualifications)",
"x": -0.2797,
"y": 0.2440,
"cluster": 13,
"weights": {
"Links": 18.0000,
"Total link strength": 24.0000,
"Citations": 2.0000
}
},
{
"id": 71,
"label": "(1988) initial criteria and guidelines for staff development, , london, national council for vocational qualifications",
"x": -0.1023,
"y": 0.2772,
"cluster": 12,
"weights": {
"Links": 19.0000,
"Total link strength": 26.0000,
"Citations": 2.0000
}
},
{
"id": 97,
"label": "(1989) understanding competence, , (leicester, udace)",
"x": -0.2812,
"y": 0.2407,
"cluster": 13,
"weights": {
"Links": 18.0000,
"Total link strength": 22.0000,
"Citations": 2.0000
}
},
{
"id": 232,
"label": "(1995) a vision for higher level vocational qualifications, , sheffield, employment department",
"x": -0.1896,
"y": 0.2365,
"cluster": 12,
"weights": {
"Links": 14.0000,
"Total link strength": 14.0000,
"Citations": 2.0000
}
},
{
"id": 279,
"label": "(1996) the assessment of nvqs, , university of sussex, institute of education",
"x": -0.0793,
"y": 0.2675,
"cluster": 12,
"weights": {
"Links": 18.0000,
"Total link strength": 19.0000,
"Citations": 2.0000
}
},
{
"id": 567,
"label": "(2002) key competencies: a developing concept in general compulsory education, , brussels: eurydice/european commission",
"x": -0.6228,
"y": -0.0015,
"cluster": 1,
"weights": {
"Links": 1.0000,
"Total link strength": 1.0000,
"Citations": 2.0000
}
},
{
"id": 1389,
"label": "(2009), http://www.esd-world-conference-2009.org/fileadmin/download/esd2009_bonndeclaration080409.pdf, unesco (united nations educational, scientific and cultural organization), bonn declaration, word conference on education for sustainable development, bonn, 2009. (accessed april 2011)",
"x": 0.2269,
"y": 0.0147,
"cluster": 6,
"weights": {
"Links": 5.0000,
"Total link strength": 18.0000,
"Citations": 2.0000
}
},
{
"id": 1542,
"label": "(2011) curriculum framework for pre-university education in the republic of kosovo, , prishtina: mest",
"x": -0.4679,
"y": -0.0207,
"cluster": 4,
"weights": {
"Links": 11.0000,
"Total link strength": 13.0000,
"Citations": 2.0000
}
},
{
"id": 2223,
"label": "(2016) a new skills agenda for europe, , http://eur-lex.europa.eu/legal-content/en/txt/pdf/?uri=celex:52016dc0381&from=en, retrieved from",
"x": -0.4566,
"y": -0.0246,
"cluster": 4,
"weights": {
"Links": 14.0000,
"Total link strength": 15.0000,
"Citations": 2.0000
}
},
{
"id": 2251,
"label": "(2016) entrepreneurship education at school in europe, , eurydice report, publication office of the european union, luxembourg",
"x": -0.6326,
"y": -0.0081,
"cluster": 7,
"weights": {
"Links": 10.0000,
"Total link strength": 13.0000,
"Citations": 2.0000
}
},
{
"id": 2394,
"label": "(2017) education for sustainable development goals: learning objectives, , unesco, paris",
"x": 0.2013,
"y": -0.0013,
"cluster": 6,
"weights": {
"Links": 22.0000,
"Total link strength": 22.0000,
"Citations": 3.0000
}
},
{
"id": 2396,
"label": "(2017) education for sustainable development goals: learning objectives, , unesco: paris, france",
"x": 2.3436,
"y": -0.0174,
"cluster": 10,
"weights": {
"Links": 12.0000,
"Total link strength": 16.0000,
"Citations": 2.0000
}
},
{
"id": 2419,
"label": "(2017) key data on teaching languages at school in europe-2017 edition, , eurydice report. luxembourg: publications office of the european union",
"x": -0.5634,
"y": 0.1465,
"cluster": 5,
"weights": {
"Links": 2.0000,
"Total link strength": 2.0000,
"Citations": 2.0000
}
},
{
"id": 2546,
"label": "(2018) issues and trends in education for sustainable development, , unesco. unesco: paris, france",
"x": 2.3430,
"y": -0.0174,
"cluster": 10,
"weights": {
"Links": 10.0000,
"Total link strength": 10.0000,
"Citations": 2.0000
}
},
{
"id": 2855,
"label": "a pedagogy of multiliteracies: designing social futures (1996) harvard educational review, 66 (1), pp. 60-92",
"x": -0.4614,
"y": -0.0659,
"cluster": 3,
"weights": {
"Links": 7.0000,
"Total link strength": 8.0000,
"Citations": 3.0000
}
},
{
"id": 2867,
"label": "aarkrog, v., learning in the workplace and the significance of school-based education: a study of learning in a danish vocational education and training programme (2005) international journal of lifelong education, 24, pp. 137-147",
"x": -0.6018,
"y": 0.0027,
"cluster": 1,
"weights": {
"Links": 12.0000,
"Total link strength": 17.0000,
"Citations": 2.0000
}
},
{
"id": 3042,
"label": "adler, m., flihan, s., (1997) the interdisciplinary continuum: reconciling theory, research, and practice, , national research center on english learning and achievement, albany, ny",
"x": 0.5587,
"y": -0.0147,
"cluster": 9,
"weights": {
"Links": 39.0000,
"Total link strength": 77.0000,
"Citations": 2.0000
}
},
{
"id": 3064,
"label": "advance and challenges (1999) annual review of public health, 20, pp. xiii-xxx",
"x": -0.9775,
"y": -0.1327,
"cluster": 3,
"weights": {
"Links": 8.0000,
"Total link strength": 11.0000,
"Citations": 2.0000
}
},
{
"id": 3236,
"label": "aktas, c.b., whelan, r., stoffer, h., todd, e., kern, c.l., developing a university-wide course on sustainability: a critical evaluation of planning and implementation (2015) j. clean. prod, 106, pp. 216-221",
"x": 2.3183,
"y": -0.0172,
"cluster": 2,
"weights": {
"Links": 10.0000,
"Total link strength": 12.0000,
"Citations": 2.0000
}
},
{
"id": 3262,
"label": "ala-mutka, k., (2011) mapping digital competence: towards a conceptual understanding, , luxembourg: european union",
"x": -0.7277,
"y": -0.1177,
"cluster": 11,
"weights": {
"Links": 7.0000,
"Total link strength": 14.0000,
"Citations": 2.0000
}
},
{
"id": 3454,
"label": "allinder, r.m., the relations between efficacy and the instructional practices of special education teachers and consultants (1994) teacher education and special education, 17, pp. 86-95",
"x": -0.7939,
"y": 0.0574,
"cluster": 7,
"weights": {
"Links": 32.0000,
"Total link strength": 46.0000,
"Citations": 2.0000
}
},
{
"id": 3488,
"label": "alonso, e., grisalena, j., campo, a., plurilingual education in secondary schools: analysis of results (2008) international clil research journal, 1 (1), pp. 36-49",
"x": -0.5587,
"y": 0.1389,
"cluster": 5,
"weights": {
"Links": 4.0000,
"Total link strength": 5.0000,
"Citations": 2.0000
}
},
{
"id": 3496,
"label": "alptekin, c., towards intercultural communicative competence in elt (2002) elt journal, 56 (1), pp. 57-64",
"x": -0.4764,
"y": 0.0427,
"cluster": 5,
"weights": {
"Links": 9.0000,
"Total link strength": 9.0000,
"Citations": 2.0000
}
},
{
"id": 3607,
"label": "american society of agronomy: madison, wi, usa",
"x": 2.2814,
"y": -0.0169,
"cluster": 2,
"weights": {
"Links": 1.0000,
"Total link strength": 2.0000,
"Citations": 2.0000
}
},
{
"id": 3744,
"label": "anderson-levitt, k., global flows of competence-based approaches in primary and secondary education (2017) cahiers de la recherche sur l’education et les savoirs, 16, pp. 47-72",
"x": -0.4745,
"y": -0.0239,
"cluster": 4,
"weights": {
"Links": 17.0000,
"Total link strength": 18.0000,
"Citations": 3.0000
}
},
{
"id": 3862,
"label": "anu e press and asia pacific press: canberra, australia",
"x": 2.2641,
"y": -0.0167,
"cluster": 2,
"weights": {
"Links": 4.0000,
"Total link strength": 14.0000,
"Citations": 2.0000
}
},
{
"id": 4009,
"label": "arima, a., a plea for more education for sustainable development (2009) sustainability science, 4 (1), pp. 3-5",
"x": 0.2132,
"y": -0.0089,
"cluster": 6,
"weights": {
"Links": 12.0000,
"Total link strength": 12.0000,
"Citations": 2.0000
}
},
{
"id": 4080,
"label": "arrindell, w.a., van der ende, j., cross-sample invariance of the structure of self-reported distress and difficulty in assertiveness (1985) advances in behavior research and therapy, 7, pp. 205-243",
"x": -0.7905,
"y": 0.2511,
"cluster": 5,
"weights": {
"Links": 9.0000,
"Total link strength": 16.0000,
"Citations": 2.0000
}
},
{
"id": 4094,
"label": "arthur, m., the boundaryless career: a new perspective for organizational inquiry (1994) journal of organizational behavior, 15, pp. 295-306",
"x": -0.6500,
"y": 0.0245,
"cluster": 1,
"weights": {
"Links": 10.0000,
"Total link strength": 18.0000,
"Citations": 2.0000
}
},
{
"id": 4208,
"label": "atay, d., teacher research for professional development (2008) elt journal, 62, pp. 139-147",
"x": -0.5429,
"y": -0.0267,
"cluster": 3,
"weights": {
"Links": 4.0000,
"Total link strength": 4.0000,
"Citations": 2.0000
}
},
{
"id": 4251,
"label": "attwell, g., new roles for vocational education and training teachers and trainers in europe: a new framework for their education (1997) journal of european industrial training, 21 (6-7), pp. 256-265",
"x": -0.5608,
"y": 0.0123,
"cluster": 1,
"weights": {
"Links": 19.0000,
"Total link strength": 20.0000,
"Citations": 2.0000
}
},
{
"id": 4360,
"label": "axley, l., competency: a concept analysis (2008) nursing forum, 43 (4), pp. 214-222",
"x": -0.6237,
"y": -0.1800,
"cluster": 8,
"weights": {
"Links": 3.0000,
"Total link strength": 3.0000,
"Citations": 2.0000
}
},
{
"id": 4415,
"label": "baartman, l.k., bastiaens, t.j., kirschner, p.a., van der vleuten, c.p., evaluating assessment quality in competence-based education: a qualitative comparison of two frameworks (2007) educational research review, 2 (2), pp. 114-129",
"x": -0.6326,
"y": -0.0080,
"cluster": 7,
"weights": {
"Links": 10.0000,
"Total link strength": 13.0000,
"Citations": 2.0000
}
},
{
"id": 4478,
"label": "backman, m., pitt, h., marsden, t., mehmood, a., mathijs, e., experiential approaches to sustainability education: towards learning landscapes (2019) international journal of sustainability in higher education, 20 (1), pp. 139-156",
"x": 0.1250,
"y": -0.0022,
"cluster": 6,
"weights": {
"Links": 19.0000,
"Total link strength": 23.0000,
"Citations": 2.0000
}
},
{
"id": 4556,
"label": "bailey, c., (1984) beyond the present and the particular, , (london, routledge & kegan paul)",
"x": -0.2866,
"y": 0.2407,
"cluster": 13,
"weights": {
"Links": 18.0000,
"Total link strength": 24.0000,
"Citations": 2.0000
}
},
{
"id": 4718,
"label": "bandura, a., (1977) social learning theory, , englewood cliffs, nj: prentice hall",
"x": -0.4755,
"y": -0.0496,
"cluster": 3,
"weights": {
"Links": 3.0000,
"Total link strength": 4.0000,
"Citations": 2.0000
}
},
{
"id": 4735,
"label": "bandura, a., (1997) self-efficacy: the exercise of control, , w.h. freeman and company, new york",
"x": -0.7936,
"y": 0.0572,
"cluster": 7,
"weights": {
"Links": 32.0000,
"Total link strength": 46.0000,
"Citations": 2.0000
}
},
{
"id": 4749,
"label": "bandura, a., self-efficacy: toward a unifying theory of behavioral change (1977) psychological review, 84, pp. 191-215",
"x": -0.7348,
"y": 0.1115,
"cluster": 7,
"weights": {
"Links": 21.0000,
"Total link strength": 21.0000,
"Citations": 2.0000
}
},
{
"id": 4880,
"label": "barnes, l.b., christensen, c.r., hansen, a.j., (1994) teaching and the case method, , harvard business school press, boston, ma",
"x": 0.5601,
"y": -0.0140,
"cluster": 9,
"weights": {
"Links": 39.0000,
"Total link strength": 77.0000,
"Citations": 2.0000
}
},
{
"id": 4896,
"label": "barnett, r., (1994) the limits of competence: knowledge, higher education and society, , buckingham, the society for research in higher education and open university press",
"x": -0.0886,
"y": 0.2890,
"cluster": 12,
"weights": {
"Links": 16.0000,
"Total link strength": 23.0000,
"Citations": 2.0000
}
},
{
"id": 5036,
"label": "barth, m., godemann, j., rieckman, m., stoltenberg, u., developing key competences for sustainable development in higher education (2007) international journal sustainability higher education, 8 (4), pp. 416-430",
"x": 0.2557,
"y": -0.0029,
"cluster": 6,
"weights": {
"Links": 1.0000,
"Total link strength": 2.0000,
"Citations": 2.0000
}
},
{
"id": 5038,
"label": "barth, m., godemann, j., rieckmann, m., stoltenberg, u., developing key competencies for sustainable development in higher education (2007) int j sustain high educ, 8 (4), pp. 416-430",
"x": 1.1090,
"y": -0.0056,
"cluster": 6,
"weights": {
"Links": 5.0000,
"Total link strength": 5.0000,
"Citations": 2.0000
}
},
{
"id": 5043,
"label": "barth, m., godemann, j., rieckmann, m., stoltenberg, u., developing key competencies for sustainable development in higher education (2007) int. j. sustain. high. educ, 8, pp. 416-430",
"x": 2.3105,
"y": -0.0171,
"cluster": 2,
"weights": {
"Links": 22.0000,
"Total link strength": 35.0000,
"Citations": 5.0000
}
},
{
"id": 5044,
"label": "barth, m., godemann, j., rieckmann, m., stoltenberg, u., developing key competencies for sustainable development in higher education (2007) int. j. sustain. high. educ, 8, pp. 416-430. , [crossref]",
"x": 2.3473,
"y": -0.0174,
"cluster": 10,
"weights": {
"Links": 15.0000,
"Total link strength": 26.0000,
"Citations": 4.0000
}
},
{
"id": 5045,
"label": "barth, m., godemann, j., rieckmann, m., stoltenberg, u., developing key competencies for sustainable development in higher education (2007) int. j. sustain. high. educ., 8, pp. 416-430",
"x": 2.1032,
"y": -0.0153,
"cluster": 2,
"weights": {
"Links": 6.0000,
"Total link strength": 8.0000,
"Citations": 2.0000
}
},
{
"id": 5046,
"label": "barth, m., godemann, j., rieckmann, m., stoltenberg, u., developing key competencies for sustainable development in higher education (2007) international journal of sustainability in higher education, 8 (4), pp. 416-430",
"x": 0.1583,
"y": 0.0281,
"cluster": 6,
"weights": {
"Links": 21.0000,
"Total link strength": 29.0000,
"Citations": 4.0000
}
},
{
"id": 5050,
"label": "barth, m., michelsen, g., learning for change: an educational contribution to sustainability science (2013) sustainability science, 8 (1), pp. 103-119",
"x": 0.2296,
"y": -0.0040,
"cluster": 6,
"weights": {
"Links": 14.0000,
"Total link strength": 16.0000,
"Citations": 3.0000
}
},
{
"id": 5088,
"label": "bartram, d., the great eight competencies: a criterion-centric approach to validation (2005) journal of applied psychology, 90 (6), pp. 1185-1203",
"x": -0.3745,
"y": 0.0199,
"cluster": 5,
"weights": {
"Links": 15.0000,
"Total link strength": 16.0000,
"Citations": 4.0000
}
},
{
"id": 5277,
"label": "beauchamp, c., thomas, l., understanding teacher identity: an overview of issues in the literature and implications for teacher education (2009) cambridge journal of education, 39 (2), pp. 175-189",
"x": -0.5104,
"y": -0.0472,
"cluster": 4,
"weights": {
"Links": 21.0000,
"Total link strength": 21.0000,
"Citations": 2.0000
}
},
{
"id": 5353,
"label": "beeby, a., (1996) teaching translation from spanish to english, , ottawa: university of ottawa press",
"x": -0.6906,
"y": -0.2933,
"cluster": 8,
"weights": {
"Links": 20.0000,
"Total link strength": 24.0000,
"Citations": 2.0000
}
},
{
"id": 5393,
"label": "beijaard, d., verloop, n., assessing teachers' practical knowledge (1996) studies in educational evaluation, 22, pp. 275-286",
"x": -0.5430,
"y": -0.0268,
"cluster": 3,
"weights": {
"Links": 4.0000,
"Total link strength": 5.0000,
"Citations": 2.0000
}
},
{
"id": 5438,
"label": "bell, r.t., (1991) translation and translating, , london: longman",
"x": -0.6851,
"y": -0.2887,
"cluster": 8,
"weights": {
"Links": 26.0000,
"Total link strength": 36.0000,
"Citations": 3.0000
}
},
{
"id": 5487,
"label": "beneitone, p., bartolome, e., global generic competences with local ownership: a comparative study from the perspective of graduates in four world regions (2014) tuning journal for higher education, 1 (2), pp. 303-334",
"x": -0.5467,
"y": -0.0299,
"cluster": 3,
"weights": {
"Links": 4.0000,
"Total link strength": 4.0000,
"Citations": 2.0000
}
},
{
"id": 5514,
"label": "benner, p., from novice to expert (1982) american journal of nursing, 82, pp. 402-407",
"x": -0.2847,
"y": 0.2437,
"cluster": 13,
"weights": {
"Links": 13.0000,
"Total link strength": 13.0000,
"Citations": 2.0000
}
},
{
"id": 5577,
"label": "bentler, p.m., bonett, d.g., significance tests and goodness of fit in the analysis of covariance structures (1980) psychological bulletin, 88 (3), pp. 588-606",
"x": -0.3993,
"y": -0.0295,
"cluster": 4,
"weights": {
"Links": 3.0000,
"Total link strength": 3.0000,
"Citations": 2.0000
}
},
{
"id": 5580,
"label": "bentler, p.m., comparative fit indexes in structural models (1990) psychological bulletin, 107, pp. 238-246",
"x": -0.4858,
"y": -0.0185,
"cluster": 3,
"weights": {
"Links": 12.0000,
"Total link strength": 12.0000,
"Citations": 2.0000
}
},
{
"id": 5604,
"label": "bereiter, c., (2002) education and mind in the knowledge age, , mahwah, nj: erlbaum",
"x": -0.6040,
"y": 0.0049,
"cluster": 1,
"weights": {
"Links": 2.0000,
"Total link strength": 2.0000,
"Citations": 2.0000
}
},
{
"id": 5738,
"label": "bernstein, b., (1973) class, codes and control, 2. , london: routledge and kegan paul",
"x": -0.4884,
"y": -0.0548,
"cluster": 4,
"weights": {
"Links": 20.0000,
"Total link strength": 35.0000,
"Citations": 3.0000
}
},
{
"id": 5746,
"label": "bernstein, b., (1990) the structuring of pedagogic discourse, , london: routledge",
"x": -0.4884,
"y": -0.0549,
"cluster": 4,
"weights": {
"Links": 20.0000,
"Total link strength": 35.0000,
"Citations": 3.0000
}
},
{
"id": 5749,
"label": "bernstein, b., (1996) pedagogy, symbolic control and identity: theory, research, critique, , london: taylor & francis",
"x": -0.4502,
"y": -0.0735,
"cluster": 3,
"weights": {
"Links": 4.0000,
"Total link strength": 4.0000,
"Citations": 2.0000
}
},
{
"id": 5763,
"label": "bernstein, b., vertical and horizontal discourse: an essay (1999) british journal of sociology of education, 20 (2), pp. 157-173",
"x": -0.4884,
"y": -0.0548,
"cluster": 4,
"weights": {
"Links": 20.0000,
"Total link strength": 35.0000,
"Citations": 3.0000
}
},
{
"id": 5921,
"label": "biemans, h., nieuwenhuis, l., poell, r., mulder, m., wesselink, r., competence based vet in the netherlands: backgrounds and pitfalls (2004) journal of vocational education and training, 56 (2), pp. 523-538",
"x": -0.4905,
"y": -0.0165,
"cluster": 3,
"weights": {
"Links": 20.0000,
"Total link strength": 24.0000,
"Citations": 2.0000
}
},
{
"id": 5926,
"label": "biemans, h., nieuwenhuis, l., poell, r., mulder, m., wesselink, r., competence-based vet in the netherlands: background and pitfalls (2004) journal of vocational education and training, 56 (4), pp. 523-538",
"x": -0.5831,
"y": -0.0037,
"cluster": 1,
"weights": {
"Links": 44.0000,
"Total link strength": 53.0000,
"Citations": 7.0000
}
},
{
"id": 5927,
"label": "biemans, h., nieuwenhuis, l., poell, r., mulder, m., wesselink, r., competence-based vet in the netherlands: background and pitfalls (2004) journal of vocational education and training, 56, pp. 523-538",
"x": -0.6544,
"y": 0.0256,
"cluster": 1,
"weights": {
"Links": 11.0000,
"Total link strength": 19.0000,
"Citations": 3.0000
}
},
{
"id": 5932,
"label": "biemans, h., nieuwenhuis, l., poell, r.f., mulder, m., wesselink, r., competence-based vet in the netherlands: background and pitfalls (2004) journal of vocational education & training, 56, pp. 523-538",
"x": -0.5430,
"y": -0.0268,
"cluster": 3,
"weights": {
"Links": 4.0000,
"Total link strength": 5.0000,
"Citations": 2.0000
}
},
{
"id": 5934,
"label": "biemans, h., wesselink, r., gulikers, j., schaafsma, s., verstegen, j., mulder, m., towards competence-based vet: dealing with the pitfalls (2009) journal of vocational education & training, 61, pp. 267-286",
"x": -0.6205,
"y": 0.0007,
"cluster": 1,
"weights": {
"Links": 19.0000,
"Total link strength": 21.0000,
"Citations": 3.0000
}
},
{
"id": 5935,
"label": "biemans, h., wesselink, r., gulikers, j., schaafsma, s., verstegen, j., mulder, m., towards competence-based vet: dealing with the pitfalls (2009) journal of vocational education and training, 61 (3), pp. 267-286",
"x": -0.5334,
"y": -0.0197,
"cluster": 3,
"weights": {
"Links": 59.0000,
"Total link strength": 72.0000,
"Citations": 9.0000
}
},
{
"id": 5939,
"label": "biemans, h.j.a., nieuwenhuis, a.f.m., poell, r.f., mulder, m., wesselink, r., competence-based vet in the netherlands: backgrounds and pitfalls (2004) journal of vocational education and training, 56 (2), pp. 523-538",
"x": -0.5527,
"y": -0.0071,
"cluster": 3,
"weights": {
"Links": 15.0000,
"Total link strength": 18.0000,
"Citations": 2.0000
}
},
{
"id": 5942,
"label": "biemans, h.j.a., wesselink, r., gulikers, j.t.m., schaafsma, s., verstegen, j., mulder, m., towards competence-based vet: dealing with the pitfalls (2009) journal of vocational education and training, 61 (3), pp. 267-286",
"x": -0.5403,
"y": 0.0002,
"cluster": 1,
"weights": {
"Links": 23.0000,
"Total link strength": 24.0000,
"Citations": 2.0000
}
},
{
"id": 5970,
"label": "biesta, g., what kind of citizen? what kind of democracy? citizenship education and the scottish curriculum for excellence (2008) scottish educational review, 40 (2), pp. 38-52",
"x": -0.4680,
"y": -0.0207,
"cluster": 4,
"weights": {
"Links": 11.0000,
"Total link strength": 13.0000,
"Citations": 2.0000
}
},
{
"id": 5984,
"label": "biggs, j., (2005) calidad del aprendizaje universitario, , madrid: narcea",
"x": -0.5892,
"y": -0.0493,
"cluster": 11,
"weights": {
"Links": 11.0000,
"Total link strength": 11.0000,
"Citations": 2.0000
}
},
{
"id": 5991,
"label": "biggs, j., enhancing teaching through constructive alignment (1996) higher education, 32 (3), pp. 347-364",
"x": -0.0831,
"y": -0.0327,
"cluster": 6,
"weights": {
"Links": 18.0000,
"Total link strength": 18.0000,
"Citations": 3.0000
}
},
{
"id": 5996,
"label": "biggs, j., what the student does: teaching for enhanced learning (1999) higher education research & development, 18 (1), pp. 57-75",
"x": -0.3782,
"y": -0.0350,
"cluster": 3,
"weights": {
"Links": 22.0000,
"Total link strength": 23.0000,
"Citations": 3.0000
}
},
{
"id": 6033,
"label": "billett, s., knowing in practice: re-conceptualising vocational expertise (2001) learning and instruction, 11, pp. 431-452",
"x": -0.5789,
"y": -0.0070,
"cluster": 1,
"weights": {
"Links": 30.0000,
"Total link strength": 36.0000,
"Citations": 5.0000
}
},
{
"id": 6194,
"label": "black, p., william, d., assessment and classroom learning (1998) assessment in education, 5 (1), pp. 7-74",
"x": -0.7601,
"y": 0.0497,
"cluster": 7,
"weights": {
"Links": 35.0000,
"Total link strength": 49.0000,
"Citations": 3.0000
}
},
{
"id": 6324,
"label": "bloom, b.s., engelhart, m.d., hill, w.h., frust, e.j., krathwohl, d.r., (1956) taxonomy of education objectives, , david mckay, new york, ny",
"x": 0.5598,
"y": -0.0138,
"cluster": 9,
"weights": {
"Links": 39.0000,
"Total link strength": 77.0000,
"Citations": 2.0000
}
},
{
"id": 6412,
"label": "boeve-de pauw, j., gericke, n., olsson, d., berglund, t., the effectiveness of education for sustainable development (2015) sustainability, 7, pp. 15693-15717",
"x": 2.3186,
"y": -0.0172,
"cluster": 2,
"weights": {
"Links": 12.0000,
"Total link strength": 13.0000,
"Citations": 2.0000
}
},
{
"id": 6590,
"label": "borghans, l., green, f., mayhew, k., skills measurement and economic analysis: an introduction (2001) oxford economic papers, 53 (3), pp. 375-384",
"x": -0.9745,
"y": -0.1319,
"cluster": 3,
"weights": {
"Links": 8.0000,
"Total link strength": 12.0000,
"Citations": 2.0000
}
},
{
"id": 6606,
"label": "borko, h., professional development and teacher learning: mapping the terrain (2004) educational researcher, 33 (8), pp. 3-15",
"x": -0.5480,
"y": -0.0445,
"cluster": 11,
"weights": {
"Links": 13.0000,
"Total link strength": 13.0000,
"Citations": 2.0000
}
},
{
"id": 6761,
"label": "bowen, g.a., document analysis as a qualitative research method (2009) qualitative research journal, 9 (2), pp. 27-40",
"x": -0.4934,
"y": -0.0172,
"cluster": 4,
"weights": {
"Links": 12.0000,
"Total link strength": 14.0000,
"Citations": 3.0000
}
},
{
"id": 6805,
"label": "boyatzis, r.e., (1982) the competent manager: a model for effective performance, , new york: wiley",
"x": -0.5617,
"y": 0.0135,
"cluster": 1,
"weights": {
"Links": 21.0000,
"Total link strength": 27.0000,
"Citations": 2.0000
}
},
{
"id": 6806,
"label": "boyatzis, r.e., (1982) the competent manager: a model for effective performance, , new york: wiley-interscience",
"x": -0.6890,
"y": -0.2921,
"cluster": 8,
"weights": {
"Links": 22.0000,
"Total link strength": 26.0000,
"Citations": 2.0000
}
},
{
"id": 6809,
"label": "boyatzis, r.e., (1984) identification of skill requirements for effective job performance, , boston: mcber",
"x": -0.6891,
"y": -0.2921,
"cluster": 8,
"weights": {
"Links": 22.0000,
"Total link strength": 26.0000,
"Citations": 2.0000
}
},
{