-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirect_citation_net.json
5137 lines (5137 loc) · 158 KB
/
direct_citation_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": 1,
"label": "alm k. (2022)",
"description": "<table><tr><td>Authors:</td><td>alm k.; beery t.h.; eiblmeier d.; fahmy t.</td></tr><tr><td>Title:</td><td>students’ learning sustainability – implicit, explicit or non-existent: a case study approach on students’ key competencies addressing the sdgs in hei program</td></tr><tr><td>Source:</td><td>international journal of sustainability in higher education, 23(8), 60-84</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.1108/ijshe-12-2020-0484",
"x": 0.8769,
"y": -0.1183,
"cluster": 1,
"weights": {
"Links": 4.0000,
"Citations": 1.0000,
"Norm. citations": 2.8333
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 1.0000,
"Norm. citations": 2.8333
}
},
{
"id": 7,
"label": "škrinjarić b. (2022)",
"description": "<table><tr><td>Authors:</td><td>škrinjarić b.</td></tr><tr><td>Title:</td><td>competence-based approaches in organizational and individual context</td></tr><tr><td>Source:</td><td>humanities and social sciences communications, 9(1)</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.1057/s41599-022-01047-1",
"x": 0.6362,
"y": 0.3087,
"cluster": 1,
"weights": {
"Links": 5.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 10,
"label": "leal m.s. (2022)",
"description": "<table><tr><td>Authors:</td><td>leal m.s.; gómez m.l.o.; toma r.b.</td></tr><tr><td>Title:</td><td>conceptual construction of global competence in education</td></tr><tr><td>Source:</td><td>teoria de la educacion, 34(1), 83-103</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.14201/teri.25394",
"x": -0.3645,
"y": 0.3677,
"cluster": 3,
"weights": {
"Links": 1.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 11,
"label": "birdman j. (2022)",
"description": "<table><tr><td>Authors:</td><td>birdman j.; wiek a.; lang d.j.</td></tr><tr><td>Title:</td><td>developing key competencies in sustainability through project-based learning in graduate sustainability programs</td></tr><tr><td>Source:</td><td>international journal of sustainability in higher education, 23(5), 1139-1157</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.1108/ijshe-12-2020-0506",
"x": 0.8405,
"y": -0.0474,
"cluster": 1,
"weights": {
"Links": 5.0000,
"Citations": 1.0000,
"Norm. citations": 2.8333
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 1.0000,
"Norm. citations": 2.8333
}
},
{
"id": 12,
"label": "venn r. (2022)",
"description": "<table><tr><td>Authors:</td><td>venn r.; perez p.; vandenbussche v.</td></tr><tr><td>Title:</td><td>competencies of sustainability professionals: an empirical study on key competencies for sustainability</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 14(9)</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.3390/su14094916",
"x": 0.4182,
"y": -0.0716,
"cluster": 1,
"weights": {
"Links": 6.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 13,
"label": "van der baan n. (2022)",
"description": "<table><tr><td>Authors:</td><td>van der baan n.; gast i.; gijselaers w.; beausaert s.</td></tr><tr><td>Title:</td><td>coaching to prepare students for their school-to-work transition: conceptualizing core coaching competences</td></tr><tr><td>Source:</td><td>education and training, 64(3), 398-415</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.1108/et-11-2020-0341",
"x": -0.1736,
"y": -0.0059,
"cluster": 1,
"weights": {
"Links": 2.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 15,
"label": "ryan b. (2022)",
"description": "<table><tr><td>Authors:</td><td>ryan b.; johnston k.; taylor m.</td></tr><tr><td>Title:</td><td>recognising and measuring competency in natural hazard preparation: a preparedness competency index</td></tr><tr><td>Source:</td><td>international journal of disaster risk reduction, 73</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.1016/j.ijdrr.2022.102882",
"x": 0.8843,
"y": -0.0724,
"cluster": 1,
"weights": {
"Links": 1.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 17,
"label": "nissilä s.-p. (2022)",
"description": "<table><tr><td>Authors:</td><td>nissilä s.-p.; karjalainen a.; koukkari m.</td></tr><tr><td>Title:</td><td>it is the shared aims, trust and compassion that allow people to prosper: teacher educators´ lifelong learning in competence-based education</td></tr><tr><td>Source:</td><td>european journal of educational research, 11(2), 965-980</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.12973/eu-jer.11.2.965",
"x": -1.1450,
"y": -0.4909,
"cluster": 2,
"weights": {
"Links": 1.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 20,
"label": "zwolińska k. (2022)",
"description": "<table><tr><td>Authors:</td><td>zwolińska k.; lorenc s.; pomykała r.</td></tr><tr><td>Title:</td><td>sustainable development in education from students’ perspective—implementation of sustainable development in curricula</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 14(6)</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.3390/su14063398",
"x": 1.0806,
"y": -0.1570,
"cluster": 1,
"weights": {
"Links": 1.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 23,
"label": "aleksić a. (2022)",
"description": "<table><tr><td>Authors:</td><td>aleksić a.; nestić s.; huber m.; ljepava n.</td></tr><tr><td>Title:</td><td>the assessment of the key competences for lifelong learning—the fuzzy model approach for sustainable education</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 14(5)</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.3390/su14052686",
"x": 1.0996,
"y": 0.0660,
"cluster": 1,
"weights": {
"Links": 1.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 31,
"label": "de la torre e.m. (2022)",
"description": "<table><tr><td>Authors:</td><td>de la torre e.m.; perez-encinas a.; gomez-mediavilla g.</td></tr><tr><td>Title:</td><td>fostering sustainability through mobility knowledge, skills, and attitudes</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 14(3)</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.3390/su14031349",
"x": 0.9019,
"y": 0.0315,
"cluster": 1,
"weights": {
"Links": 3.0000,
"Citations": 3.0000,
"Norm. citations": 8.5000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 3.0000,
"Norm. citations": 8.5000
}
},
{
"id": 33,
"label": "platts e.j. (2022)",
"description": "<table><tr><td>Authors:</td><td>platts e.j.; kerner b.; adams n.; archer j.-m.</td></tr><tr><td>Title:</td><td>few and far between: rebalancing research and training priorities at the food-energy-water nexus</td></tr><tr><td>Source:</td><td>science and education</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.1007/s11191-022-00344-0",
"x": 0.8595,
"y": -0.2255,
"cluster": 1,
"weights": {
"Links": 2.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 35,
"label": "tarekegne c. (2022)",
"description": "<table><tr><td>Authors:</td><td>tarekegne c.; wesselink r.; biemans h.j.a.; mulder m.</td></tr><tr><td>Title:</td><td>effectiveness of a competence-based planting support training programme for development agents in ethiopia</td></tr><tr><td>Source:</td><td>international journal of training and development</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.1111/ijtd.12265",
"x": -0.6759,
"y": -0.2058,
"cluster": 2,
"weights": {
"Links": 5.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 36,
"label": "xiang x. (2022)",
"description": "<table><tr><td>Authors:</td><td>xiang x.; chen y.; fang y.; zhang q.</td></tr><tr><td>Title:</td><td>how key competencies progress across school terms? a study of “activities” in geography textbooks for secondary schools</td></tr><tr><td>Source:</td><td>journal of geography, 121(2), 67-76</td></tr><tr><td>Year:</td><td>2022</td></tr></table>",
"url": "https://doi.org/10.1080/00221341.2022.2052936",
"x": 0.3660,
"y": 0.1465,
"cluster": 3,
"weights": {
"Links": 2.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2022.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 57,
"label": "bükki e. (2021)",
"description": "<table><tr><td>Authors:</td><td>bükki e.; fehérvári a.</td></tr><tr><td>Title:</td><td>how do teachers collaborate in hungarian vet schools? a quantitative study of forms, perceptions of impact and related individual and organisational factors</td></tr><tr><td>Source:</td><td>empirical research in vocational education and training, 13(1)</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1186/s40461-020-00108-6",
"x": -1.1471,
"y": -0.4880,
"cluster": 2,
"weights": {
"Links": 1.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
}
},
{
"id": 61,
"label": "redman a. (2021a)",
"description": "<table><tr><td>Authors:</td><td>redman a.; wiek a.</td></tr><tr><td>Title:</td><td>competencies for advancing transformations towards sustainability</td></tr><tr><td>Source:</td><td>frontiers in education, 6</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.3389/feduc.2021.785163",
"x": 0.6553,
"y": -0.1053,
"cluster": 1,
"weights": {
"Links": 14.0000,
"Citations": 4.0000,
"Norm. citations": 1.8303
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 4.0000,
"Norm. citations": 1.8303
}
},
{
"id": 63,
"label": "imara k. (2021)",
"description": "<table><tr><td>Authors:</td><td>imara k.; altinay f.</td></tr><tr><td>Title:</td><td>integrating education for sustainable development competencies in teacher education</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 13(22)</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.3390/su132212555",
"x": 0.8008,
"y": -0.2383,
"cluster": 1,
"weights": {
"Links": 6.0000,
"Citations": 3.0000,
"Norm. citations": 1.3727
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 3.0000,
"Norm. citations": 1.3727
}
},
{
"id": 64,
"label": "brauer s. (2021)",
"description": "<table><tr><td>Authors:</td><td>brauer s.</td></tr><tr><td>Title:</td><td>towards competence-oriented higher education: a systematic literature review of the different perspectives on successful exit profiles</td></tr><tr><td>Source:</td><td>education and training, 63(9), 1376-1390</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1108/et-07-2020-0216",
"x": -0.6495,
"y": -0.1055,
"cluster": 2,
"weights": {
"Links": 4.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
}
},
{
"id": 68,
"label": "redman a. (2021b)",
"description": "<table><tr><td>Authors:</td><td>redman a.; rowe d.; brundiers k.; brock a.</td></tr><tr><td>Title:</td><td>what motivates students to be sustainability change agents in the face of adversity?</td></tr><tr><td>Source:</td><td>sustainability and climate change, 14(5), 313-322</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1089/scc.2021.0024",
"x": 0.8630,
"y": -0.2177,
"cluster": 1,
"weights": {
"Links": 4.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
}
},
{
"id": 69,
"label": "curtis h.l. (2021)",
"description": "<table><tr><td>Authors:</td><td>curtis h.l.; gabriel l.c.; sahakian m.; cattacin s.</td></tr><tr><td>Title:</td><td>practice-based program evaluation in higher education for sustainability: a student participatory approach</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 13(19)</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.3390/su131910816",
"x": 0.2576,
"y": -0.1107,
"cluster": 1,
"weights": {
"Links": 7.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
}
},
{
"id": 74,
"label": "konrad t. (2021)",
"description": "<table><tr><td>Authors:</td><td>konrad t.; wiek a.; barth m.</td></tr><tr><td>Title:</td><td>learning to collaborate from diverse interactions in project-based sustainability courses</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 13(17)</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.3390/su13179884",
"x": 0.8341,
"y": -0.2519,
"cluster": 1,
"weights": {
"Links": 4.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 79,
"label": "pálsdóttir a. (2021)",
"description": "<table><tr><td>Authors:</td><td>pálsdóttir a.; jóhannsdóttir l.</td></tr><tr><td>Title:</td><td>key competencies for sustainability in university of iceland curriculum</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 13(16)</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.3390/su13168945",
"x": 0.8638,
"y": -0.0449,
"cluster": 1,
"weights": {
"Links": 3.0000,
"Citations": 3.0000,
"Norm. citations": 1.3727
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 3.0000,
"Norm. citations": 1.3727
}
},
{
"id": 89,
"label": "teresa fuertes‐camacho m. (2021)",
"description": "<table><tr><td>Authors:</td><td>teresa fuertes‐camacho m.; dulsat‐ortiz c.; álvarez‐cánovas i.</td></tr><tr><td>Title:</td><td>reflective practice in times of covid‐19: a tool to improve education for sustainable development in pre‐service teacher training</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 13(11)</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.3390/su13116261",
"x": 0.8616,
"y": 0.0270,
"cluster": 1,
"weights": {
"Links": 2.0000,
"Citations": 4.0000,
"Norm. citations": 1.8303
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 4.0000,
"Norm. citations": 1.8303
}
},
{
"id": 90,
"label": "kwon i.-s. (2021)",
"description": "<table><tr><td>Authors:</td><td>kwon i.-s.</td></tr><tr><td>Title:</td><td>analysis of key competencies and curriculum expertise of korean dance programs to assist in their long-term sustainability</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 13(11)</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.3390/su13115801",
"x": 0.8465,
"y": -0.4678,
"cluster": 1,
"weights": {
"Links": 1.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
}
},
{
"id": 100,
"label": "guitert m. (2021)",
"description": "<table><tr><td>Authors:</td><td>guitert m.; romeu t.; baztán p.</td></tr><tr><td>Title:</td><td>the digital competence framework for primary and secondary schools in europe</td></tr><tr><td>Source:</td><td>european journal of education, 56(1), 133-149</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1111/ejed.12430",
"x": -0.5412,
"y": 0.4744,
"cluster": 3,
"weights": {
"Links": 2.0000,
"Citations": 3.0000,
"Norm. citations": 1.3727
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 3.0000,
"Norm. citations": 1.3727
}
},
{
"id": 110,
"label": "merma-molina g. (2021)",
"description": "<table><tr><td>Authors:</td><td>merma-molina g.; gavilán-martín d.; álvarez-herrero j.-f.</td></tr><tr><td>Title:</td><td>education for sustainable development: the impact of the values in mobile phone addiction</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 13(3), 1-17</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.3390/su13031479",
"x": 0.8576,
"y": 0.0419,
"cluster": 1,
"weights": {
"Links": 2.0000,
"Citations": 2.0000,
"Norm. citations": 0.9151
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 2.0000,
"Norm. citations": 0.9151
}
},
{
"id": 113,
"label": "birdman j. (2021)",
"description": "<table><tr><td>Authors:</td><td>birdman j.; redman a.; lang d.j.</td></tr><tr><td>Title:</td><td>pushing the boundaries: experience-based learning in early phases of graduate sustainability curricula</td></tr><tr><td>Source:</td><td>international journal of sustainability in higher education, 22(1), 237-253</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1108/ijshe-08-2019-0242",
"x": 0.8582,
"y": -0.0224,
"cluster": 1,
"weights": {
"Links": 4.0000,
"Citations": 3.0000,
"Norm. citations": 1.3727
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 3.0000,
"Norm. citations": 1.3727
}
},
{
"id": 116,
"label": "sumter d. (2021)",
"description": "<table><tr><td>Authors:</td><td>sumter d.; de koning j.; bakker c.; balkenende r.</td></tr><tr><td>Title:</td><td>key competencies for design in a circular economy: exploring gaps in design knowledge and skills for a circular economy</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 13(2), 1-15</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.3390/su13020776",
"x": 0.8564,
"y": 0.0469,
"cluster": 1,
"weights": {
"Links": 2.0000,
"Citations": 11.0000,
"Norm. citations": 5.0332
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 11.0000,
"Norm. citations": 5.0332
}
},
{
"id": 117,
"label": "mróz a. (2021)",
"description": "<table><tr><td>Authors:</td><td>mróz a.; ocetkiewicz i.</td></tr><tr><td>Title:</td><td>creativity for sustainability: how do polish teachers develop students’ creativity competence? analysis of research results</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 13(2), 1-22</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.3390/su13020571",
"x": 0.8362,
"y": -0.2966,
"cluster": 1,
"weights": {
"Links": 1.0000,
"Citations": 4.0000,
"Norm. citations": 1.8303
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 4.0000,
"Norm. citations": 1.8303
}
},
{
"id": 128,
"label": "misbah z. (2021)",
"description": "<table><tr><td>Authors:</td><td>misbah z.; gulikers j.; widhiarso w.; mulder m.</td></tr><tr><td>Title:</td><td>exploring connections between teacher interpersonal behaviour, student motivation and competency level in competence-based learning environments</td></tr><tr><td>Source:</td><td>learning environments research</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1007/s10984-021-09395-6",
"x": -0.9648,
"y": -0.3274,
"cluster": 2,
"weights": {
"Links": 2.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
}
},
{
"id": 130,
"label": "lozano r. (2021)",
"description": "<table><tr><td>Authors:</td><td>lozano r.; barreiro-gen m.; pietikäinen j.; gago-cortes c.; favi c.; jimenez munguia m.t.; monus f.; simão j.; benayas j.; desha c.; bostanci s.; djekic i.; moneva j.m.; sáenz o.; awuzie b.; gladysz b.</td></tr><tr><td>Title:</td><td>adopting sustainability competence-based education in academic disciplines: insights from 13 higher education institutions</td></tr><tr><td>Source:</td><td>sustainable development</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1002/sd.2253",
"x": 0.8518,
"y": -0.1441,
"cluster": 1,
"weights": {
"Links": 5.0000,
"Citations": 2.0000,
"Norm. citations": 0.9151
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 2.0000,
"Norm. citations": 0.9151
}
},
{
"id": 132,
"label": "kononiuk a. (2021)",
"description": "<table><tr><td>Authors:</td><td>kononiuk a.; sacio-szymańska a.; ollenburg s.; trivelli l.</td></tr><tr><td>Title:</td><td>teaching foresight and futures literacy and its integration into university curriculum</td></tr><tr><td>Source:</td><td>foresight and sti governance, 15(3), 105-121</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.17323/2500-2597.2021.3.105.121",
"x": 0.8391,
"y": 0.1044,
"cluster": 1,
"weights": {
"Links": 1.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 133,
"label": "tahirsylaj a. (2021a)",
"description": "<table><tr><td>Authors:</td><td>tahirsylaj a.; fazliu f.</td></tr><tr><td>Title:</td><td>from content- to competence-based curricula–an educational account of curriculum policy in kosovo</td></tr><tr><td>Source:</td><td>european education, 53(1), 1-14</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1080/10564934.2021.1971541",
"x": -0.1957,
"y": 0.5711,
"cluster": 3,
"weights": {
"Links": 3.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
}
},
{
"id": 135,
"label": "chen p. (2021)",
"description": "<table><tr><td>Authors:</td><td>chen p.; goncharova a.; pilz m.; frommberger d.; li j.; romanova o.; lin y.</td></tr><tr><td>Title:</td><td>international curriculum comparison in vocational education and training: a collaborative development of an analysis instrument</td></tr><tr><td>Source:</td><td>international journal for research in vocational education and training, 8(4), 16-43</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.13152/ijrvet.8.4.2",
"x": -0.6727,
"y": -0.2469,
"cluster": 2,
"weights": {
"Links": 3.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
}
},
{
"id": 138,
"label": "alm k. (2021)",
"description": "<table><tr><td>Authors:</td><td>alm k.; melén m.; aggestam-pontoppidan c.</td></tr><tr><td>Title:</td><td>advancing sdg competencies in higher education: exploring an interdisciplinary pedagogical approach</td></tr><tr><td>Source:</td><td>international journal of sustainability in higher education, 22(6), 1450-1466</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1108/ijshe-10-2020-0417",
"x": 0.8127,
"y": -0.2498,
"cluster": 1,
"weights": {
"Links": 2.0000,
"Citations": 2.0000,
"Norm. citations": 0.9151
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 2.0000,
"Norm. citations": 0.9151
}
},
{
"id": 143,
"label": "wilson-daily a.e. (2021)",
"description": "<table><tr><td>Authors:</td><td>wilson-daily a.e.; feliu-torruella m.; romero serra m.</td></tr><tr><td>Title:</td><td>key competencies: developing an instrument for assessing trainee teachers’ understanding and views</td></tr><tr><td>Source:</td><td>teacher development, 25(4), 478-493</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1080/13664530.2021.1930127",
"x": -0.9075,
"y": 0.3245,
"cluster": 3,
"weights": {
"Links": 2.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
}
},
{
"id": 149,
"label": "ortiz-revilla j. (2021)",
"description": "<table><tr><td>Authors:</td><td>ortiz-revilla j.; greca i.m.; meneses-villagrá j.-á.</td></tr><tr><td>Title:</td><td>effects of an integrated steam approach on the development of competence in primary education students (efectos de una propuesta steam integrada en el desarrollo competencial del alumnado de educación primaria)</td></tr><tr><td>Source:</td><td>infancia y aprendizaje, 44(4), 838-870</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1080/02103702.2021.1925473",
"x": -1.0053,
"y": 0.6620,
"cluster": 3,
"weights": {
"Links": 1.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 1.0000,
"Norm. citations": 0.4576
}
},
{
"id": 161,
"label": "diego-mantecón j.-m. (2021)",
"description": "<table><tr><td>Authors:</td><td>diego-mantecón j.-m.; blanco t.-f.; ortiz-laso z.; lavicza z.</td></tr><tr><td>Title:</td><td>steam projects with kiks format for developing key competences [proyectos steam con formato kiks para el desarrollo de competencias clave]</td></tr><tr><td>Source:</td><td>comunicar, 29(66), 34-43</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.3916/c66-2021-03",
"x": -1.1900,
"y": -0.4417,
"cluster": 2,
"weights": {
"Links": 1.0000,
"Citations": 7.0000,
"Norm. citations": 3.2030
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 7.0000,
"Norm. citations": 3.2030
}
},
{
"id": 162,
"label": "clément p. (2021)",
"description": "<table><tr><td>Authors:</td><td>clément p.</td></tr><tr><td>Title:</td><td>the introduction of competence-based education into the compulsory school curriculum in france (2002–2017): hybridity and polysemy as conditions for change</td></tr><tr><td>Source:</td><td>comparative education, 57(1), 35-50</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1080/03050068.2020.1845062",
"x": 0.0846,
"y": 0.4788,
"cluster": 3,
"weights": {
"Links": 1.0000,
"Citations": 2.0000,
"Norm. citations": 0.9151
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 2.0000,
"Norm. citations": 0.9151
}
},
{
"id": 163,
"label": "tahirsylaj a. (2021b)",
"description": "<table><tr><td>Authors:</td><td>tahirsylaj a.</td></tr><tr><td>Title:</td><td>what kind of citizens? constructing ‘young europeans’ through loud borrowing in curriculum policy-making in kosovo</td></tr><tr><td>Source:</td><td>comparative education, 57(1), 115-129</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1080/03050068.2020.1845066",
"x": -0.3097,
"y": 0.4423,
"cluster": 3,
"weights": {
"Links": 3.0000,
"Citations": 3.0000,
"Norm. citations": 1.3727
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 3.0000,
"Norm. citations": 1.3727
}
},
{
"id": 170,
"label": "brundiers k. (2021)",
"description": "<table><tr><td>Authors:</td><td>brundiers k.; barth m.; cebrián g.; cohen m.; diaz l.; doucette-remington s.; dripps w.; habron g.; harré n.; jarchow m.; losch k.; michel j.; mochizuki y.; rieckmann m.; parnell r.; walker p.; zint m.</td></tr><tr><td>Title:</td><td>key competencies in sustainability in higher education—toward an agreed-upon reference framework</td></tr><tr><td>Source:</td><td>sustainability science, 16(1), 13-29</td></tr><tr><td>Year:</td><td>2021</td></tr></table>",
"url": "https://doi.org/10.1007/s11625-020-00838-2",
"x": 0.6844,
"y": -0.3019,
"cluster": 1,
"weights": {
"Links": 12.0000,
"Citations": 63.0000,
"Norm. citations": 28.8266
},
"scores": {
"Pub. year": 2021.0000,
"Citations": 63.0000,
"Norm. citations": 28.8266
}
},
{
"id": 177,
"label": "gonzález‐salamanca j.c. (2020)",
"description": "<table><tr><td>Authors:</td><td>gonzález‐salamanca j.c.; agudelo o.l.; salinas j.</td></tr><tr><td>Title:</td><td>key competences, education for sustainable development and strategies for the development of 21st century skills. a systematic literature review</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 12(24), 1-17</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.3390/su122410366",
"x": 0.8834,
"y": -0.0898,
"cluster": 1,
"weights": {
"Links": 1.0000,
"Citations": 8.0000,
"Norm. citations": 2.0172
},
"scores": {
"Pub. year": 2020.0000,
"Citations": 8.0000,
"Norm. citations": 2.0172
}
},
{
"id": 188,
"label": "lópez l.m.g. (2020)",
"description": "<table><tr><td>Authors:</td><td>lópez l.m.g.; gutiérrez d.; fernández b.g.; gómez j.l.l.; romo-perez v.; nemiña r.e.; jiménez a.m.</td></tr><tr><td>Title:</td><td>2007-2017: a decade of key competences in spain [2007-2017: una década de competencias clave en españa]</td></tr><tr><td>Source:</td><td>profesorado, 24(3), 381-399</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.30827/profesorado.v24i3.8236",
"x": -0.5839,
"y": 0.5229,
"cluster": 3,
"weights": {
"Links": 7.0000,
"Citations": 2.0000,
"Norm. citations": 0.5043
},
"scores": {
"Pub. year": 2020.0000,
"Citations": 2.0000,
"Norm. citations": 0.5043
}
},
{
"id": 202,
"label": "tahirsylaj a. (2020)",
"description": "<table><tr><td>Authors:</td><td>tahirsylaj a.; sundberg d.</td></tr><tr><td>Title:</td><td>the unfinished business of defining competences for 21st century curricula—a systematic research review</td></tr><tr><td>Source:</td><td>curriculum perspectives, 40(2), 131-145</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.1007/s41297-020-00112-6",
"x": -0.2392,
"y": 0.2073,
"cluster": 3,
"weights": {
"Links": 7.0000,
"Citations": 8.0000,
"Norm. citations": 2.0172
},
"scores": {
"Pub. year": 2020.0000,
"Citations": 8.0000,
"Norm. citations": 2.0172
}
},
{
"id": 205,
"label": "fernández-martín f.-d. (2020)",
"description": "<table><tr><td>Authors:</td><td>fernández-martín f.-d.; arco-tirado j.-l.; carrillo-rosúa f.-j.; hervás-torres m.; ruiz-hidalgo j.-f.; romero-lópez c.</td></tr><tr><td>Title:</td><td>making stem education objectives sustainable through a tutoring program</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 12(16)</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.3390/su12166653",
"x": -0.4138,
"y": 0.6014,
"cluster": 3,
"weights": {
"Links": 1.0000,
"Citations": 3.0000,
"Norm. citations": 0.7565
},
"scores": {
"Pub. year": 2020.0000,
"Citations": 3.0000,
"Norm. citations": 0.7565
}
},
{
"id": 208,
"label": "ravenscroft a. (2020)",
"description": "<table><tr><td>Authors:</td><td>ravenscroft a.; dellow j.; brites m.j.; jorge a.; catalão d.</td></tr><tr><td>Title:</td><td>radioactive101-learning through radio, learning for life: an international approach to the inclusion and non-formal learning of socially excluded young people</td></tr><tr><td>Source:</td><td>international journal of inclusive education, 24(9), 997-1018</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.1080/13603116.2018.1503739",
"x": -0.4248,
"y": 0.5957,
"cluster": 3,
"weights": {
"Links": 1.0000,
"Citations": 3.0000,
"Norm. citations": 0.7565
},
"scores": {
"Pub. year": 2020.0000,
"Citations": 3.0000,
"Norm. citations": 0.7565
}
},
{
"id": 212,
"label": "mishra d. (2020)",
"description": "<table><tr><td>Authors:</td><td>mishra d.; mishra a.</td></tr><tr><td>Title:</td><td>sustainability inclusion in informatics curriculum development</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 12(14), 1-16</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.3390/su12145769",
"x": 0.7332,
"y": -0.3241,
"cluster": 1,
"weights": {
"Links": 3.0000,
"Citations": 2.0000,
"Norm. citations": 0.5043
},
"scores": {
"Pub. year": 2020.0000,
"Citations": 2.0000,
"Norm. citations": 0.5043
}
},
{
"id": 213,
"label": "ayers j. (2020)",
"description": "<table><tr><td>Authors:</td><td>ayers j.</td></tr><tr><td>Title:</td><td>competence literate but context lacking? investigating the potential of study abroad programs to promote sustainability competence acquisition in students</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 12(13)</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.3390/su12135389",
"x": 0.9028,
"y": -0.1236,
"cluster": 1,
"weights": {
"Links": 2.0000,
"Citations": 10.0000,
"Norm. citations": 2.5216
},
"scores": {
"Pub. year": 2020.0000,
"Citations": 10.0000,
"Norm. citations": 2.5216
}
},
{
"id": 218,
"label": "seo e. (2020)",
"description": "<table><tr><td>Authors:</td><td>seo e.; ryu j.; hwang s.</td></tr><tr><td>Title:</td><td>building key competencies into an environmental education curriculum using a modified delphi approach in south korea</td></tr><tr><td>Source:</td><td>environmental education research, 26(6), 890-914</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.1080/13504622.2020.1733493",
"x": 0.8604,
"y": 0.0321,
"cluster": 1,
"weights": {
"Links": 2.0000,
"Citations": 5.0000,
"Norm. citations": 1.2608
},
"scores": {
"Pub. year": 2020.0000,
"Citations": 5.0000,
"Norm. citations": 1.2608
}
},
{
"id": 219,
"label": "kepanen p. (2020)",
"description": "<table><tr><td>Authors:</td><td>kepanen p.; määttä k.; uusiautti s.</td></tr><tr><td>Title:</td><td>how do students describe their study processes in the competence-based vocational special education teacher training?</td></tr><tr><td>Source:</td><td>human arenas, 3(2), 247-263</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.1007/s42087-019-00080-y",
"x": -0.7147,
"y": -0.2473,
"cluster": 2,
"weights": {
"Links": 4.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
},
"scores": {
"Pub. year": 2020.0000,
"Citations": 0.0000,
"Norm. citations": 0.0000
}
},
{
"id": 227,
"label": "salovaara j.j. (2020)",
"description": "<table><tr><td>Authors:</td><td>salovaara j.j.; soini k.; pietikäinen j.</td></tr><tr><td>Title:</td><td>sustainability science in education: analysis of master’s programmes’ curricula</td></tr><tr><td>Source:</td><td>sustainability science, 15(3), 901-915</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.1007/s11625-019-00745-1",
"x": 0.8665,
"y": -0.1947,
"cluster": 1,
"weights": {
"Links": 3.0000,
"Citations": 7.0000,
"Norm. citations": 1.7651
},
"scores": {
"Pub. year": 2020.0000,
"Citations": 7.0000,
"Norm. citations": 1.7651
}
},
{
"id": 231,
"label": "napal m. (2020)",
"description": "<table><tr><td>Authors:</td><td>napal m.; mendióroz-lacambra a.m.; peñalva a.</td></tr><tr><td>Title:</td><td>sustainability teaching tools in the digital age</td></tr><tr><td>Source:</td><td>sustainability (switzerland), 12(8)</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.3390/su12083366",
"x": 0.3838,
"y": -0.0912,
"cluster": 1,
"weights": {
"Links": 4.0000,
"Citations": 13.0000,
"Norm. citations": 3.2780
},
"scores": {
"Pub. year": 2020.0000,
"Citations": 13.0000,
"Norm. citations": 3.2780
}
},
{
"id": 235,
"label": "placklé i. (2020)",
"description": "<table><tr><td>Authors:</td><td>placklé i.; könings k.d.; struyven k.; libotton a.; van merriënboer j.j.g.; engels n.</td></tr><tr><td>Title:</td><td>powerful learning environments in secondary vocational education: towards a shared understanding</td></tr><tr><td>Source:</td><td>european journal of teacher education, 43(2), 224-242</td></tr><tr><td>Year:</td><td>2020</td></tr></table>",
"url": "https://doi.org/10.1080/02619768.2019.1681965",
"x": -1.2584,
"y": -0.2865,
"cluster": 2,
"weights": {