-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAuthor_Disambiguation.txt
1298 lines (1298 loc) · 636 KB
/
Author_Disambiguation.txt
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
a'hearn michael 10567 A'Hearn Michael 138885662, 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/273 vsekhsvyatskii s. k., anne c.' NASA 1998 Physical, Characteristics, Comets [(0, 0.41625425), (1, 0.007702277), (2, 0.0077013737), (3, 0.007701025), (4, 0.007701026), (5, 0.0077026216), (6, 0.007700841), (7, 0.00770247), (8, 0.5221325), (9, 0.0077016195)]
a. 11203 A. 95457728, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/841 elliott, del hoyo Handbook, Birds, World [(0, 0.5798452), (1, 0.2600107), (2, 0.020014448), (3, 0.020015268), (4, 0.020012176), (5, 0.020012915), (6, 0.020011598), (7, 0.020037252), (8, 0.0200168), (9, 0.020023668)]
a. budovsky 11295 A. Budovsky 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/2110 d. barardo, r. tacutu, e. johnson, e. diana, j. p. de magalhaes, g. lehmann, v. e. fraifeld, d. toren, j. wang, t. craig, d. thornton 2018 AnAge [(0, 0.020003892), (1, 0.4200142), (2, 0.020003803), (3, 0.020003935), (4, 0.020003803), (5, 0.020003803), (6, 0.020003803), (7, 0.020003803), (8, 0.41995516), (9, 0.020003803)]
a. f. long tristan 10104 A. F. Long Tristan 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/68 martin emily s. Dryad Digital Repository 2015 synthetic_dataset [(0, 0.0020019873), (1, 0.9819798), (2, 0.002003079), (3, 0.002001997), (4, 0.0020019955), (5, 0.002002115), (6, 0.0020023838), (7, 0.0020022956), (8, 0.0020022856), (9, 0.0020020804)]
a. holroyd patricia 10335 A. Holroyd Patricia 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/197 rankin brian d., w. fox jeremy, barron-ortiz christian r., chew amy e., ludtke joshua a., yang xingkai, m. theodor jessica Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0029424382), (1, 0.0029434902), (2, 0.0029421244), (3, 0.002942372), (4, 0.0029427286), (5, 0.97351766), (6, 0.0029422862), (7, 0.0029421311), (8, 0.0029424964), (9, 0.0029422138)]
a. holroyd patricia 10876 A. Holroyd Patricia 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/417 rankin brian d., w. fox jeremy, barron-ortiz christian r., chew amy e., ludtke joshua a., yang xingkai, m. theodor jessica Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0027040981), (1, 0.0027046625), (2, 0.002703693), (3, 0.002703763), (4, 0.0027044355), (5, 0.9756645), (6, 0.002703699), (7, 0.0027036292), (8, 0.0027038676), (9, 0.002703686)]
a. katz laura 10042 A. Katz Laura https://www.aifb.kit.edu/web/DSKG/dataset/25 r. grant jessica Dryad Digital Repository 2016 Table_S2 [(0, 0.24384438), (1, 0.0031292744), (2, 0.2856038), (3, 0.0031299852), (4, 0.35157695), (5, 0.10019745), (6, 0.0031291754), (7, 0.003130415), (8, 0.0031296439), (9, 0.0031289184)]
aakaash jois 10214 Aakaash Jois 17744445, 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/125 Jester, Collaborative, Filtering, Dataset [(0, 0.0016142603), (1, 0.0016146804), (2, 0.32645145), (3, 0.0016148643), (4, 0.0016146048), (5, 0.037538394), (6, 0.0016143897), (7, 0.0016144334), (8, 0.36317822), (9, 0.26314473)]
aaron swartz 11199 Aaron Swartz 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/776 Library [(0, 0.24420118), (1, 0.016668282), (2, 0.18333621), (3, 0.016668908), (4, 0.016669791), (5, 0.27903497), (6, 0.19341487), (7, 0.016667925), (8, 0.016667861), (9, 0.016669977)]
abbas tahir 10216 Abbas Tahir 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/129 Figshare 2019 Smart, Scenarios [(0, 0.0017249655), (1, 0.0017252666), (2, 0.0017250631), (3, 0.98447245), (4, 0.0017253052), (5, 0.0017249085), (6, 0.0017252283), (7, 0.0017254311), (8, 0.0017254293), (9, 0.0017259752)]
abhinav gupta 10110 Abhinav Gupta 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/71 chang nadine, pyles john, marcus austin, tarr michael, aminoff elissa Figshare 2019 BOLD5000 [(0, 0.021280022), (1, 0.08836781), (2, 0.0005441114), (3, 0.00054414745), (4, 0.00054414535), (5, 0.00054410304), (6, 0.00054413086), (7, 0.034354564), (8, 0.8527328), (9, 0.00054415426)]
abien fred agarap 10160 Abien Fred Agarap 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/95 sex-classification [(0, 0.012509954), (1, 0.0125117125), (2, 0.012510988), (3, 0.012510143), (4, 0.012511963), (5, 0.012509607), (6, 0.13814008), (7, 0.012509295), (8, 0.1989981), (9, 0.5752882)]
abineshkumar k 11178 Abineshkumar K 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/576 [(0, 0.9356552), (1, 0.0071491776), (2, 0.0071476977), (3, 0.0071476693), (4, 0.0071479827), (5, 0.007151312), (6, 0.007148162), (7, 0.0071490263), (8, 0.007153114), (9, 0.007150685)]
acosta mario munoz 10030 Acosta Mario Munoz 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/19 sevvandi kandanaarachchi, smith-miles kate, hyndman rob Figshare 2019 Datasets, outlier, detection [(0, 0.0034495848), (1, 0.0034501392), (2, 0.0034499795), (3, 0.0034500107), (4, 0.0034493), (5, 0.6159075), (6, 0.003449544), (7, 0.0594201), (8, 0.30052397), (9, 0.0034498975)]
adam benson 10582 Adam Benson 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/285 Global, Shark, Attack [(0, 0.0043510394), (1, 0.0043523572), (2, 0.004352191), (3, 0.0043508466), (4, 0.0043510753), (5, 0.471172), (6, 0.0043507274), (7, 0.49401683), (8, 0.004351567), (9, 0.0043513384)]
adams dean c. 10620 Adams Dean C. 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/300 sherratt emma, kraemer andrew, serb jeanne, alejandrino alvin Dryad Digital Repository 2016 [(0, 0.0066707563), (1, 0.00666956), (2, 0.93997175), (3, 0.0066694673), (4, 0.006669467), (5, 0.006669789), (6, 0.0066700955), (7, 0.0066696336), (8, 0.0066701327), (9, 0.0066693653)]
adithya ganesh 11180 Adithya Ganesh 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/578 Fantasy, Premier, League [(0, 0.0033356221), (1, 0.21466422), (2, 0.0033356575), (3, 0.003335725), (4, 0.003336221), (5, 0.14754829), (6, 0.0033356666), (7, 0.0033363046), (8, 0.6144351), (9, 0.0033371963)]
adler r. f. 10198 Adler R. F. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/119 huffman g. j., bolvin d. t., nelkin e. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 Version, Combined, Precipitation [(0, 0.0005750675), (1, 0.00057512365), (2, 0.00057504704), (3, 0.015637718), (4, 0.0262197), (5, 0.14349507), (6, 0.00057506375), (7, 0.7978044), (8, 0.000575174), (9, 0.013967618)]
agatha gil 10771 Ágatha Gil https://www.aifb.kit.edu/web/DSKG/dataset/392 correia ana m., gandra miguel, liberal marcos, valente raul, rosso massimiliano, pierce graham j. figshare 2019 Metadata, record, dataset, cetacean, occurrences, Eastern, North, Atlantic [(0, 0.26775646), (1, 0.011120489), (2, 0.011119371), (3, 0.011119299), (4, 0.011123657), (5, 0.011119022), (6, 0.011122717), (7, 0.011119022), (8, 0.64327866), (9, 0.011121326)]
aiting yang 10636 Aiting Yang 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/313 chen wei, xiaoning wu, xuzhen yan, anjian xu Figshare 2019 Supplementary, Table [(0, 0.012514355), (1, 0.012509654), (2, 0.0125105595), (3, 0.012509655), (4, 0.012509654), (5, 0.012509654), (6, 0.01250982), (7, 0.8874058), (8, 0.0125108585), (9, 0.012509978)]
aker ahmet 10454 Aker Ahmet 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/242 derczynski leon, zubiaga arkaitz, kochkina elena, gorrell genevieve, bontcheva kalina, liakata maria Figshare 2019 RumourEval [(0, 0.0034522405), (1, 0.0034517262), (2, 0.0034515297), (3, 0.0034516058), (4, 0.63409746), (5, 0.0034525406), (6, 0.19449508), (7, 0.0034517439), (8, 0.14724432), (9, 0.00345177)]
alarcon marisa 10013 Alarcón Marisa 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/8 mario, lisa, aldasoro juan j., sanmartin isabel Dryad Digital Repository 2015 Figure [(0, 0.38135788), (1, 0.00834963), (2, 0.00834942), (3, 0.008351242), (4, 0.2579381), (5, 0.0083501255), (6, 0.008349011), (7, 0.008349428), (8, 0.008351455), (9, 0.3022537)]
albert costas 10085 Albert Costas 41008148, 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/53 Crypto, Currencies [(0, 0.0012208875), (1, 0.0012211099), (2, 0.88420105), (3, 0.0012208611), (4, 0.10603104), (5, 0.0012209398), (6, 0.0012208683), (7, 0.0012210407), (8, 0.0012209621), (9, 0.0012212811)]
albert lois e. 10016 Albert Lois E. 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/9 2017 Ferndale, loss-on-ignition, dataset [(0, 0.3686943), (1, 0.016680235), (2, 0.016679931), (3, 0.016679931), (4, 0.016680116), (5, 0.016680526), (6, 0.4978636), (7, 0.016680267), (8, 0.016680831), (9, 0.016680287)]
alberts susan c. 10927 Alberts Susan C. 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/450 gesquiere laurence, altmann jeanne, archie elizabeth a. Dryad Digital Repository 2018 Fecal, hormones [(0, 0.0012993737), (1, 0.98830646), (2, 0.0012993362), (3, 0.0012991858), (4, 0.0012992643), (5, 0.0012991697), (6, 0.0012991786), (7, 0.0012993537), (8, 0.0012993573), (9, 0.0012993485)]
alberts susan c. 11116 Alberts Susan C. 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/526 gesquiere laurence, altmann jeanne, archie elizabeth a. Dryad Digital Repository 2018 duration [(0, 0.002129109), (1, 0.98083806), (2, 0.0021291943), (3, 0.0021291843), (4, 0.002128799), (5, 0.0021289664), (6, 0.0021291887), (7, 0.0021288702), (8, 0.002129763), (9, 0.0021288516)]
alda fernando 10290 Alda Fernando 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/168 c. bagley justin, breitman maria f., bermingham eldredge, p. van, berghe eric, b. johnson jerald Dryad Digital Repository 2015 concatenated, mtDNA, dataset [(0, 0.12771718), (1, 0.004003189), (2, 0.0040033692), (3, 0.8402588), (4, 0.004002839), (5, 0.004002803), (6, 0.0040027713), (7, 0.0040029683), (8, 0.0040030032), (9, 0.004003113)]
aldasoro juan j. 10014 Aldasoro Juan J. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/8 mario, lisa, alarcon marisa, sanmartin isabel Dryad Digital Repository 2015 Figure [(0, 0.38135788), (1, 0.00834963), (2, 0.00834942), (3, 0.008351242), (4, 0.2579381), (5, 0.0083501255), (6, 0.008349011), (7, 0.008349428), (8, 0.008351455), (9, 0.3022537)]
alejandrino alvin 10619 Alejandrino Alvin 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/300 sherratt emma, kraemer andrew, serb jeanne, adams dean c. Dryad Digital Repository 2016 [(0, 0.0066707563), (1, 0.00666956), (2, 0.93997175), (3, 0.0066694673), (4, 0.006669467), (5, 0.006669789), (6, 0.0066700955), (7, 0.0066696336), (8, 0.0066701327), (9, 0.0066693653)]
aleksey bilogur 10643 Aleksey Bilogur 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/319 Wikipedia, Article, Titles [(0, 0.0016958948), (1, 0.8098), (2, 0.0016959121), (3, 0.0016959639), (4, 0.0016964364), (5, 0.0016959562), (6, 0.0016960277), (7, 0.0016959822), (8, 0.0016961824), (9, 0.17663164)]
alex korablev 10913 Alex Korablev 41008148, 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/441 Keras, Models [(0, 0.0023820228), (1, 0.002382098), (2, 0.0023818852), (3, 0.0023819339), (4, 0.0023820668), (5, 0.0023820428), (6, 0.0023819315), (7, 0.0023821564), (8, 0.97856176), (9, 0.0023820838)]
alex meyer 11118 Alex Meyer https://www.aifb.kit.edu/web/DSKG/dataset/529 Hubway [(0, 0.010007033), (1, 0.010011355), (2, 0.010010861), (3, 0.010012579), (4, 0.26841536), (5, 0.23354097), (6, 0.010007412), (7, 0.42797554), (8, 0.010010348), (9, 0.010008539)]
alexander minushkin 10895 Alexander Minushkin 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/432 Intel, Scalable, Processors [(0, 0.005559409), (1, 0.005560827), (2, 0.11125007), (3, 0.0055605588), (4, 0.0055597033), (5, 0.84426826), (6, 0.005559049), (7, 0.0055611883), (8, 0.0055602337), (9, 0.0055606645)]
alexander perkins 10889 Alexander Perkins https://www.aifb.kit.edu/web/DSKG/dataset/430 michael lee, perkins alexander, tanentzapf guy, guy tanentzapf, lee michael figshare 2019 Data.xlsx [(0, 0.38986102), (1, 0.0025018675), (2, 0.002502987), (3, 0.0025023213), (4, 0.0025019143), (5, 0.0025020312), (6, 0.0025019953), (7, 0.28618985), (8, 0.30643418), (9, 0.0025018284)]
alin secareanu 10980 Alin Secareanu https://www.aifb.kit.edu/web/DSKG/dataset/468 Football, Events [(0, 0.00051858975), (1, 0.41842872), (2, 0.00051863346), (3, 0.00051863986), (4, 0.00051861064), (5, 0.00051862455), (6, 0.00051864004), (7, 0.14450979), (8, 0.43343106), (9, 0.0005186591)]
allan adrian k 10777 Allan Adrian K 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/395 wang jing, kean laura, jingli yang, shireen a, herzyk pawel, dow julian Figshare 2011 phenotype [(0, 0.93111986), (1, 0.0033351902), (2, 0.04220043), (3, 0.0033347197), (4, 0.0033348387), (5, 0.0033347732), (6, 0.0033351888), (7, 0.0033348722), (8, 0.0033352363), (9, 0.003334876)]
allan r. j. 10527 Allan R. J. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
allan rob 10481 Allan Rob 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
almunia christine 10949 Almunia Christine 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/453 cogne yannick, pible olivier, gouveia duarte, francois adeline, bouchez olivier, eche camille, ford alex, geffard olivier, armengaud jean, chaumot arnaud figshare 2019 Metadata, record, transcriptomes, gammarid, individuals, proteogenomic, analysis, seven, taxonomic, groups [(0, 0.0050043194), (1, 0.0050041666), (2, 0.0050037466), (3, 0.005003414), (4, 0.0050031887), (5, 0.0050032004), (6, 0.0050044227), (7, 0.0050036465), (8, 0.95496607), (9, 0.0050038155)]
altmann jeanne 10925 Altmann Jeanne 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/450 gesquiere laurence, archie elizabeth a., alberts susan c. Dryad Digital Repository 2018 Fecal, hormones [(0, 0.0012993737), (1, 0.98830646), (2, 0.0012993362), (3, 0.0012991858), (4, 0.0012992643), (5, 0.0012991697), (6, 0.0012991786), (7, 0.0012993537), (8, 0.0012993573), (9, 0.0012993485)]
altmann jeanne 11114 Altmann Jeanne 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/526 gesquiere laurence, archie elizabeth a., alberts susan c. Dryad Digital Repository 2018 duration [(0, 0.002129109), (1, 0.98083806), (2, 0.0021291943), (3, 0.0021291843), (4, 0.002128799), (5, 0.0021289664), (6, 0.0021291887), (7, 0.0021288702), (8, 0.002129763), (9, 0.0021288516)]
alvaro flores 10303 Alvaro Flores 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/181 Medical, Appointment [(0, 0.0014500985), (1, 0.001450417), (2, 0.0014499635), (3, 0.001449975), (4, 0.0014500903), (5, 0.0014500149), (6, 0.0014506157), (7, 0.0014502583), (8, 0.0014504234), (9, 0.98694813)]
aminoff elissa 10112 Aminoff Elissa 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/71 chang nadine, pyles john, marcus austin, abhinav gupta, tarr michael Figshare 2019 BOLD5000 [(0, 0.021280022), (1, 0.08836781), (2, 0.0005441114), (3, 0.00054414745), (4, 0.00054414535), (5, 0.00054410304), (6, 0.00054413086), (7, 0.034354564), (8, 0.8527328), (9, 0.00054415426)]
amir anhari 10629 Amir Anhari 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/310 Demand, Dataset [(0, 0.20052911), (1, 0.0062532), (2, 0.0062531754), (3, 0.006252444), (4, 0.006253587), (5, 0.0062556313), (6, 0.0062529827), (7, 0.006252499), (8, 0.74944496), (9, 0.0062524257)]
amoroso sara 10826 Amoroso Sara 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
anderson frances l. 11154 Anderson Frances L. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/554 stone daphne f., james w., lendemer james c. Dryad Digital Repository 2016 data_packet [(0, 0.0033349076), (1, 0.0033349362), (2, 0.0033355476), (3, 0.6295609), (4, 0.0033348904), (5, 0.0033348019), (6, 0.0033359097), (7, 0.0033350228), (8, 0.34375814), (9, 0.0033349448)]
anderson patricia m. 10514 Anderson Patricia M. 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/258 lozhkin anatoly v. 2017 Figurnoye, pollen, dataset [(0, 0.012502146), (1, 0.01250213), (2, 0.0125019355), (3, 0.0125019355), (4, 0.012502054), (5, 0.012502315), (6, 0.8874807), (7, 0.012502151), (8, 0.012502517), (9, 0.012502163)]
andrea wei-ching huang 11238 Andrea Wei-Ching Huang 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/1891 cheng-jen lee [(0, 0.009095734), (1, 0.59337664), (2, 0.00909773), (3, 0.009092437), (4, 0.25391316), (5, 0.009093888), (6, 0.08904918), (7, 0.009093552), (8, 0.009094813), (9, 0.00909285)]
andrew truman 10807 Andrew Truman https://www.aifb.kit.edu/web/DSKG/dataset/408 LinkedIn, Profile [(0, 0.0031267044), (1, 0.31355205), (2, 0.003126853), (3, 0.0031268802), (4, 0.0031281328), (5, 0.00312676), (6, 0.003127152), (7, 0.3536262), (8, 0.0031270557), (9, 0.31093225)]
anglin julia 11083 Anglin Julia 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/515 kan erik, borich michael, thompson paul 2016 Facilitating, meta-analyses, clinical, neuroimaging, through, ENIGMA, wrapper, scripts [(0, 0.26658294), (1, 0.2580177), (2, 0.06263722), (3, 0.000776), (4, 0.0007760189), (5, 0.000775976), (6, 0.0007760049), (7, 0.009509435), (8, 0.39937264), (9, 0.00077607424)]
angryk rafal a. 10287 Angryk Rafal A. 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/166 kucuk ahmet, banda juan m. Figshare 2016 [(0, 0.0076974886), (1, 0.007698351), (2, 0.007697097), (3, 0.0076966723), (4, 0.0076972446), (5, 0.0076970905), (6, 0.007697165), (7, 0.19313358), (8, 0.74528885), (9, 0.007696475)]
angsten thomas 10813 Angsten Thomas https://www.aifb.kit.edu/web/DSKG/dataset/410 jong maarten de, chen wei, asta mark, persson kristin, notestine randy, gamst anthony, sluiter marcel, chaitanya krishna ande, sybrand van der, plata jose j., toher cormac, curtarolo stefano, ceder gerbrand Figshare 2018 Elastic, Tensor [(0, 0.0025006267), (1, 0.0025008286), (2, 0.0025004984), (3, 0.9774937), (4, 0.002500651), (5, 0.0025005413), (6, 0.0025006502), (7, 0.0025006433), (8, 0.0025011175), (9, 0.002500725)]
anjian xu 10635 Anjian Xu 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/313 chen wei, xiaoning wu, xuzhen yan, aiting yang Figshare 2019 Supplementary, Table [(0, 0.012514355), (1, 0.012509654), (2, 0.0125105595), (3, 0.012509655), (4, 0.012509654), (5, 0.012509654), (6, 0.01250982), (7, 0.8874058), (8, 0.0125108585), (9, 0.012509978)]
anna montoya 10187 Anna Montoya 162324750, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/114 Speed, Dating, Experiment [(0, 0.008600774), (1, 0.039701957), (2, 0.0009355168), (3, 0.029824022), (4, 0.00093555666), (5, 0.017722726), (6, 0.0009354824), (7, 0.0009356667), (8, 0.11227703), (9, 0.78813124)]
anna sun 11280 Anna Sun 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2056 lu yengfang, carson mencken, byron johnson, rodney stark, eric liu, chiu heu-yuan, fenggang yangf, victor yuan 2007 Spiritual, Study, Chinese, Residents [(0, 0.020010915), (1, 0.21982822), (2, 0.02002011), (3, 0.020011319), (4, 0.02001927), (5, 0.02001087), (6, 0.020023542), (7, 0.020014815), (8, 0.6200476), (9, 0.020013252)]
anne c.' 10566 Anne C.' 138885662, 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/273 vsekhsvyatskii s. k., a'hearn michael NASA 1998 Physical, Characteristics, Comets [(0, 0.41625425), (1, 0.007702277), (2, 0.0077013737), (3, 0.007701025), (4, 0.007701026), (5, 0.0077026216), (6, 0.007700841), (7, 0.00770247), (8, 0.5221325), (9, 0.0077016195)]
anonymous anonymous 10697 Anonymous Anonymous 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/353 Figshare 2019 datasets.tar.gz [(0, 0.025014363), (1, 0.025016531), (2, 0.025015159), (3, 0.025014363), (4, 0.025014363), (5, 0.025015164), (6, 0.774849), (7, 0.025026428), (8, 0.02502029), (9, 0.025014363)]
anthony g. 11240 Anthony G. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/1952 david c., muhannad 2017 Leeds, Robotic, Commands [(0, 0.005265901), (1, 0.22510047), (2, 0.005265686), (3, 0.0052663367), (4, 0.066082515), (5, 0.0052658054), (6, 0.005265824), (7, 0.005265751), (8, 0.00526681), (9, 0.6719549)]
antonio feregrino bolanos 11151 Antonio Feregrino Bolaños 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/552 r/mexico [(0, 0.0125029), (1, 0.012503654), (2, 0.012503126), (3, 0.0125029525), (4, 0.012503785), (5, 0.012503663), (6, 0.012504609), (7, 0.012505296), (8, 0.012508358), (9, 0.88746166)]
antonio houaiss 11200 Antônio Houaiss 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/838 2001 Dicionário, Houaiss, Língua, Portuguesa [(0, 0.02500868), (1, 0.54440093), (2, 0.02500868), (3, 0.02500868), (4, 0.25551888), (5, 0.025008991), (6, 0.025014648), (7, 0.02500868), (8, 0.025011206), (9, 0.025010608)]
anurag sharma 10956 Anurag Sharma 41008148, 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/456 Hotel, review [(0, 0.011113878), (1, 0.011115044), (2, 0.011114127), (3, 0.0111221615), (4, 0.011115926), (5, 0.0111148795), (6, 0.011113878), (7, 0.011114753), (8, 0.0111215925), (9, 0.8999537)]
arbeitman michelle 10089 Arbeitman Michelle 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/54 mathies laura, surjyendu ray, lopez-alvillar kayla, davies andrew Figshare 2019 Additional [(0, 0.3895015), (1, 0.0020431778), (2, 0.0020430647), (3, 0.0020425825), (4, 0.0020429618), (5, 0.0020425075), (6, 0.0020424363), (7, 0.5941563), (8, 0.0020427254), (9, 0.0020426905)]
arbeitman michelle 11092 Arbeitman Michelle 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/517 mathies laura, surjyendu ray, lopez-alvillar kayla, davies andrew Figshare 2019 Additional [(0, 0.18354425), (1, 0.0032281477), (2, 0.52929646), (3, 0.0032277578), (4, 0.13443571), (5, 0.0032277743), (6, 0.0032274346), (7, 0.13335569), (8, 0.0032284725), (9, 0.0032282593)]
archie elizabeth a. 10926 Archie Elizabeth A. 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/450 gesquiere laurence, altmann jeanne, alberts susan c. Dryad Digital Repository 2018 Fecal, hormones [(0, 0.0012993737), (1, 0.98830646), (2, 0.0012993362), (3, 0.0012991858), (4, 0.0012992643), (5, 0.0012991697), (6, 0.0012991786), (7, 0.0012993537), (8, 0.0012993573), (9, 0.0012993485)]
archie elizabeth a. 11115 Archie Elizabeth A. 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/526 gesquiere laurence, altmann jeanne, alberts susan c. Dryad Digital Repository 2018 duration [(0, 0.002129109), (1, 0.98083806), (2, 0.0021291943), (3, 0.0021291843), (4, 0.002128799), (5, 0.0021289664), (6, 0.0021291887), (7, 0.0021288702), (8, 0.002129763), (9, 0.0021288516)]
armengaud jean 10947 Armengaud Jean 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/453 cogne yannick, pible olivier, gouveia duarte, francois adeline, bouchez olivier, eche camille, ford alex, geffard olivier, chaumot arnaud, almunia christine figshare 2019 Metadata, record, transcriptomes, gammarid, individuals, proteogenomic, analysis, seven, taxonomic, groups [(0, 0.0050043194), (1, 0.0050041666), (2, 0.0050037466), (3, 0.005003414), (4, 0.0050031887), (5, 0.0050032004), (6, 0.0050044227), (7, 0.0050036465), (8, 0.95496607), (9, 0.0050038155)]
armineh nourbakhsh 10224 Armineh Nourbakhsh 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/138 starts, debunks, rumors',, 'Webpages, cited, rumor, trackers [(0, 0.00028756371), (1, 0.20934999), (2, 0.000287567), (3, 0.0002875564), (4, 0.0002875672), (5, 0.00028756217), (6, 0.5056608), (7, 0.00028760178), (8, 0.19855706), (9, 0.08470674)]
aschonitis vassilis g 10126 Aschonitis Vassilis G 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/82 mastrocicco micol, ghirardini andrea, papamichail dimitris, kleoniki, colombani nicolo, castaldelli giuseppe, fano elisa-anna PANGAEA - Data Publisher for Earth & Environmental Science 2017 resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation,, links, ESRI-grid, files,, supplement, Aschonitis,, Vassilis, Papamichail,, Dimitris;, Demertzi,, Kleoniki;, Colombani,, Nicolo;, Mastrocicco,, Micol;, Ghirardini,, Andrea;, Castaldelli,, Giuseppe;, Fano,, Elisa-Anna, (2017):, High-resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation., Earth, System, Science, Data,, 9(2),, 615-638 [(0, 0.0005132323), (1, 0.0005132701), (2, 0.00051321497), (3, 0.00051319704), (4, 0.00051321386), (5, 0.0005132613), (6, 0.028460743), (7, 0.2619134), (8, 0.6910191), (9, 0.015527402)]
ashadullah shawon 11028 Ashadullah Shawon 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/489 dataset [(0, 0.0076941554), (1, 0.4475629), (2, 0.007696796), (3, 0.007694191), (4, 0.0076953694), (5, 0.007695112), (6, 0.007694224), (7, 0.14389014), (8, 0.0076957615), (9, 0.35468134)]
ashcroft l. 10531 Ashcroft L. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
ashcroft linden 10487 Ashcroft Linden 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
asta mark 10309 Asta Mark 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/185 jong maarten de, chen wei, geerlings henry, persson kristin Figshare 2018 Piezoelectric, Tensor [(0, 0.003704297), (1, 0.0037044964), (2, 0.0037042042), (3, 0.96666), (4, 0.003704217), (5, 0.0037043015), (6, 0.0037044443), (7, 0.003704447), (8, 0.003704843), (9, 0.0037047495)]
asta mark 10811 Asta Mark https://www.aifb.kit.edu/web/DSKG/dataset/410 jong maarten de, chen wei, persson kristin, angsten thomas, notestine randy, gamst anthony, sluiter marcel, chaitanya krishna ande, sybrand van der, plata jose j., toher cormac, curtarolo stefano, ceder gerbrand Figshare 2018 Elastic, Tensor [(0, 0.0025006267), (1, 0.0025008286), (2, 0.0025004984), (3, 0.9774937), (4, 0.002500651), (5, 0.0025005413), (6, 0.0025006502), (7, 0.0025006433), (8, 0.0025011175), (9, 0.002500725)]
attridge nina 10135 Attridge Nina 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/85 eaves joanne, gilmore camilla Figshare 2019 Study, stimuli [(0, 0.0012346947), (1, 0.0012347773), (2, 0.9888875), (3, 0.0012347024), (4, 0.0012347177), (5, 0.0012346945), (6, 0.001234698), (7, 0.0012347726), (8, 0.0012347733), (9, 0.0012347109)]
attridge nina 10584 Attridge Nina 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/289 eaves joanne, gilmore camilla Figshare 2019 Study [(0, 0.0012196369), (1, 0.0012197181), (2, 0.9890229), (3, 0.0012196446), (4, 0.0012196634), (5, 0.0012196366), (6, 0.0012196461), (7, 0.0012197149), (8, 0.0012197134), (9, 0.0012196539)]
attridge nina 10682 Attridge Nina 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/349 eaves joanne, gilmore camilla Figshare 2019 Study [(0, 0.001219637), (1, 0.0012197177), (2, 0.9890229), (3, 0.0012196447), (4, 0.0012196635), (5, 0.0012196368), (6, 0.0012196462), (7, 0.001219715), (8, 0.0012197184), (9, 0.001219654)]
attridge nina 11183 Attridge Nina 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/581 eaves joanne, gilmore camilla Figshare 2019 Study [(0, 0.0012196369), (1, 0.0012197172), (2, 0.9890229), (3, 0.0012196446), (4, 0.0012196634), (5, 0.0012196366), (6, 0.0012196461), (7, 0.0012197149), (8, 0.0012197131), (9, 0.0012196539)]
attwa mohamed 10918 Attwa Mohamed 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/446 kadi adnan, hany Dryad Digital Repository 2018 [(0, 0.011121234), (1, 0.011119265), (2, 0.011124099), (3, 0.011119536), (4, 0.011118562), (5, 0.011119082), (6, 0.011133998), (7, 0.011119686), (8, 0.01111952), (9, 0.899905)]
auchmann r. 10532 Auchmann R. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
augustine john 11042 Augustine John 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
b. johnson jerald 10295 B. Johnson Jerald 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/168 c. bagley justin, alda fernando, breitman maria f., bermingham eldredge, p. van, berghe eric Dryad Digital Repository 2015 concatenated, mtDNA, dataset [(0, 0.12771718), (1, 0.004003189), (2, 0.0040033692), (3, 0.8402588), (4, 0.004002839), (5, 0.004002803), (6, 0.0040027713), (7, 0.0040029683), (8, 0.0040030032), (9, 0.004003113)]
babik wieslaw 10602 Babik Wiesław 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/296 zielinski piotr, brzyska krystyna, dudek katarzyna Dryad Digital Repository 2016 dataset [(0, 0.008337993), (1, 0.008339686), (2, 0.83854425), (3, 0.008336685), (4, 0.09474639), (5, 0.008336769), (6, 0.008337153), (7, 0.008340801), (8, 0.00834294), (9, 0.008337306)]
bagus nugraha 11095 Bagus Nugraha 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/519 Mnist [(0, 0.050001714), (1, 0.05001357), (2, 0.050004203), (3, 0.050004385), (4, 0.54993105), (5, 0.050015345), (6, 0.050001714), (7, 0.050001744), (8, 0.050010994), (9, 0.050015245)]
baihan abdullah 10995 Baihan Abdullah 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/478 Figshare 2019 IRLA-CL [(0, 0.016670661), (1, 0.016678695), (2, 0.016672695), (3, 0.01667031), (4, 0.016673807), (5, 0.01667458), (6, 0.038617652), (7, 0.8279891), (8, 0.016677788), (9, 0.016674701)]
baker richard g. 10886 Baker Richard G. 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/428 2017 Floating, Island, pollen, dataset [(0, 0.46779436), (1, 0.014293075), (2, 0.014292827), (3, 0.014292827), (4, 0.014292977), (5, 0.014293311), (6, 0.41785762), (7, 0.014293102), (8, 0.014296468), (9, 0.014293405)]
balesdent marie-helene 10058 Balesdent Marie-Hélène 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/31 couloux arnaud, wincker patrick, jean marc, noel benjamin, cruaud corinne, da silva corinne, lemainque arnaud, dutreux fabien', lapalu nicolas, linglin juliette, rouxel thierry Figshare 2018 Genomic, datasets [(0, 0.8874455), (1, 0.012505132), (2, 0.012504966), (3, 0.012509499), (4, 0.012504909), (5, 0.012505869), (6, 0.012506899), (7, 0.012505305), (8, 0.0125064375), (9, 0.012505492)]
ballouz eric 10444 Ballouz Eric 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/240 chen wei, persson kristin, mrdjenovich david, liu miao, winston donald, graf tanja, thomas d., prinz fritz b. Figshare 2018 Dielectric, Constant [(0, 0.0020839851), (1, 0.002084241), (2, 0.0020839015), (3, 0.81947345), (4, 0.0020839167), (5, 0.0020840997), (6, 0.002084219), (7, 0.002084031), (8, 0.16385399), (9, 0.0020841232)]
banda juan m. 10286 Banda Juan M. 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/166 kucuk ahmet, angryk rafal a. Figshare 2016 [(0, 0.0076974886), (1, 0.007698351), (2, 0.007697097), (3, 0.0076966723), (4, 0.0076972446), (5, 0.0076970905), (6, 0.007697165), (7, 0.19313358), (8, 0.74528885), (9, 0.007696475)]
baohua chen 10588 Baohua Chen 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/290 zhixiong zhou, liu bo, shi yue, pu fei, huaqiang bai, leibin li, xu peng figshare 2019 Metadata, record, sequence, assembly, Takifugu, bimaculatus, genome, using, PacBio, technologies [(0, 0.31403518), (1, 0.004765449), (2, 0.004767349), (3, 0.0047654244), (4, 0.05541822), (5, 0.004765057), (6, 0.0047658132), (7, 0.0047651967), (8, 0.5971871), (9, 0.0047652577)]
baohua chen 10974 Baohua Chen 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/467 zhixiong zhou, pu fei, huaqiang bai, xu peng, qiaozhen ke, yidi wu figshare 2019 Metadata, record, sequencing, assembly, Larimichthys, crocea, genome, using, PacBio, technologies [(0, 0.47701868), (1, 0.004002832), (2, 0.004003983), (3, 0.004002701), (4, 0.045470536), (5, 0.004002578), (6, 0.004003187), (7, 0.0040027876), (8, 0.44949004), (9, 0.00400268)]
barazani oz 10144 Barazani Oz https://www.aifb.kit.edu/web/DSKG/dataset/87 charbonneau amanda, tack david, lale allison, goldston josh, caple mackenzie, conner emma, ziffer-berger jotham, dworkin ian, conner jeff Dryad Digital Repository 2018 [(0, 0.06347562), (1, 0.0052664205), (2, 0.44835892), (3, 0.005266149), (4, 0.0052664382), (5, 0.0052660224), (6, 0.005265994), (7, 0.451302), (8, 0.005266528), (9, 0.005265935)]
barbara k. 10423 Barbara K. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
barbier francois 11096 Barbier Francois 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/520 tanurdzic milos, beveridge christine, tinashe chabikwa Figshare 2019 Mango, Transcriptome, Assembly [(0, 0.13876028), (1, 0.16928132), (2, 0.07224684), (3, 0.002859673), (4, 0.0028600395), (5, 0.0028596784), (6, 0.0028599333), (7, 0.0028599633), (8, 0.6025526), (9, 0.002859674)]
barker ryan 10072 Barker Ryan https://www.aifb.kit.edu/web/DSKG/dataset/43 Figshare 2019 [(0, 0.016677294), (1, 0.016680032), (2, 0.6385133), (3, 0.016676417), (4, 0.016676417), (5, 0.016676705), (6, 0.016676417), (7, 0.22806306), (8, 0.016683212), (9, 0.016677095)]
barron-ortiz christian r. 10333 Barrón-Ortiz Christian R. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/197 rankin brian d., w. fox jeremy, chew amy e., a. holroyd patricia, ludtke joshua a., yang xingkai, m. theodor jessica Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0029424382), (1, 0.0029434902), (2, 0.0029421244), (3, 0.002942372), (4, 0.0029427286), (5, 0.97351766), (6, 0.0029422862), (7, 0.0029421311), (8, 0.0029424964), (9, 0.0029422138)]
barron-ortiz christian r. 10874 Barrón-Ortiz Christian R. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/417 rankin brian d., w. fox jeremy, chew amy e., a. holroyd patricia, ludtke joshua a., yang xingkai, m. theodor jessica Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0027040981), (1, 0.0027046625), (2, 0.002703693), (3, 0.002703763), (4, 0.0027044355), (5, 0.9756645), (6, 0.002703699), (7, 0.0027036292), (8, 0.0027038676), (9, 0.002703686)]
barrow lisa 10921 Barrow Lisa 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/449 lemmon alan, lemmon emily Dryad Digital Repository 2018 datasets [(0, 0.006256595), (1, 0.08220225), (2, 0.25246012), (3, 0.0062573324), (4, 0.0062564355), (5, 0.0062565412), (6, 0.0062572267), (7, 0.0062564355), (8, 0.006256617), (9, 0.6215404)]
bassano bruno 10964 Bassano Bruno 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/461 brambilla alice, keller lukas, grossen christine Dryad Digital Repository 2017 heterozygosity-fitness [(0, 0.0028594495), (1, 0.0028595387), (2, 0.0028591931), (3, 0.0028589326), (4, 0.0028587556), (5, 0.002858702), (6, 0.0028587976), (7, 0.9742685), (8, 0.0028594194), (9, 0.0028587575)]
batushansky albert 10717 Batushansky Albert 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/363 nevo noa, toubiana david, samani talya, sikron noga, saranga yehoshua, fait aaron Figshare 2016 Additional, Table [(0, 0.0033348186), (1, 0.003336347), (2, 0.1180632), (3, 0.8552586), (4, 0.003334381), (5, 0.0033344324), (6, 0.0033343637), (7, 0.0033347586), (8, 0.0033346822), (9, 0.0033344477)]
behrens klaus 11043 Behrens Klaus 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
behrmann marlene 10343 Behrmann Marlene 86803240, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/198 lerner yulia, scherf k. suzy, katkov mikhail, hasson uri Figshare 2018 Developmental, trajectories, brain, development [(0, 0.0021756173), (1, 0.0021761425), (2, 0.0021760834), (3, 0.002175505), (4, 0.0021757244), (5, 0.0021765279), (6, 0.002175662), (7, 0.0021755423), (8, 0.9804178), (9, 0.0021754322)]
beige joachim 10041 Beige Joachim 33923547, 41008148, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/24 Figshare 2016 Excel, Dataset [(0, 0.025013646), (1, 0.025011463), (2, 0.025007969), (3, 0.37841177), (4, 0.025007823), (5, 0.025007062), (6, 0.025007062), (7, 0.025014652), (8, 0.42150503), (9, 0.0250135)]
benas nikolaos 10028 Benas Nikolaos 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/18 stengel martin, fuchs petra, finkensieper stephan, werscheck martin, van zadelhoff gerd-jan CM 2016 CLAAS-2:, CLoud, property, dAtAset, using, SEVIRI, Edition [(0, 0.0007817478), (1, 0.0007818785), (2, 0.0007817986), (3, 0.0007817648), (4, 0.0007817705), (5, 0.0007819013), (6, 0.0007818739), (7, 0.7842217), (8, 0.20952374), (9, 0.0007817838)]
bendl jaroslav 10409 Bendl Jaroslav 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
berghe eric 10294 Berghe Eric 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/168 c. bagley justin, alda fernando, breitman maria f., bermingham eldredge, p. van, b. johnson jerald Dryad Digital Repository 2015 concatenated, mtDNA, dataset [(0, 0.12771718), (1, 0.004003189), (2, 0.0040033692), (3, 0.8402588), (4, 0.004002839), (5, 0.004002803), (6, 0.0040027713), (7, 0.0040029683), (8, 0.0040030032), (9, 0.004003113)]
beringer tim 10387 Beringer Tim https://www.aifb.kit.edu/web/DSKG/dataset/224 dumas patrice, wirsenius stefan, searchinger tim d PANGAEA - Data Publisher for Earth & Environmental Science 2018 calculations,, supplement, Searchinger,, Wirsenius,, Stefan;, Beringer,, Dumas,, Patrice, (2018):, Assessing, efficiency, changes, mitigating, climate, change., Nature,, 564(7735),, 249-253 [(0, 0.0009094369), (1, 0.0009095744), (2, 0.0009093671), (3, 0.00090934784), (4, 0.0009094097), (5, 0.00090944185), (6, 0.9918148), (7, 0.00090961665), (8, 0.0009095609), (9, 0.00090942584)]
berleant shoshana 10678 Berleant Shoshana 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/342 gorgolewski krzysztof Figshare 2016 Uncompressed, version [(0, 0.012512633), (1, 0.012507022), (2, 0.012516472), (3, 0.012508001), (4, 0.012506908), (5, 0.88741595), (6, 0.012506899), (7, 0.012507107), (8, 0.012510997), (9, 0.012508005)]
bermingham eldredge 10292 Bermingham Eldredge 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/168 c. bagley justin, alda fernando, breitman maria f., p. van, berghe eric, b. johnson jerald Dryad Digital Repository 2015 concatenated, mtDNA, dataset [(0, 0.12771718), (1, 0.004003189), (2, 0.0040033692), (3, 0.8402588), (4, 0.004002839), (5, 0.004002803), (6, 0.0040027713), (7, 0.0040029683), (8, 0.0040030032), (9, 0.004003113)]
bessemoulin p. 10533 Bessemoulin P. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
beveridge christine 11098 Beveridge Christine 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/520 barbier francois, tanurdzic milos, tinashe chabikwa Figshare 2019 Mango, Transcriptome, Assembly [(0, 0.13876028), (1, 0.16928132), (2, 0.07224684), (3, 0.002859673), (4, 0.0028600395), (5, 0.0028596784), (6, 0.0028599333), (7, 0.0028599633), (8, 0.6025526), (9, 0.002859674)]
blanchet cecile l. 10649 Blanchet Cécile L. 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/329 GFZ Data Services 2019 global, database, radiogenic, isotopes, marine, terrestrial, samples [(0, 0.00050287443), (1, 0.48203674), (2, 0.000502883), (3, 0.0005028842), (4, 0.00050285796), (5, 0.00050292816), (6, 0.00050288904), (7, 0.29928637), (8, 0.21515669), (9, 0.0005028923)]
blancq frank le 10500 Blancq Frank Le 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
bobby-joe breitkreutz 10433 Bobby-Joe Breitkreutz 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/232 stark chris, tyers mike Figshare 2011 Searches, filters [(0, 0.34899977), (1, 0.63147044), (2, 0.0024411266), (3, 0.0024409848), (4, 0.0024411508), (5, 0.002441069), (6, 0.0024410826), (7, 0.002441163), (8, 0.0024416507), (9, 0.002441552)]
boddington claire 10606 Boddington Claire 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/299 nigel j., gifford miriam l., walker liam, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.06490304), (1, 0.1070259), (2, 0.18610051), (3, 0.3643822), (4, 0.0011773852), (5, 0.0011773492), (6, 0.0011774445), (7, 0.0011774695), (8, 0.27170125), (9, 0.0011774856)]
boddington claire 10687 Boddington Claire https://www.aifb.kit.edu/web/DSKG/dataset/351 nigel j., gifford miriam l., walker liam, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.0024406072), (1, 0.0024404959), (2, 0.48463523), (3, 0.3690657), (4, 0.0024402626), (5, 0.0024400789), (6, 0.0024400258), (7, 0.0024401515), (8, 0.12921718), (9, 0.0024402505)]
boertjes erik m. 10367 Boertjes Erik M. 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/214 toet alexander, erp jan b.f. van, buuren stef van Figshare 2016 draft [(0, 0.0058848374), (1, 0.13605708), (2, 0.0058861887), (3, 0.0058875135), (4, 0.005885186), (5, 0.005884874), (6, 0.0058856793), (7, 0.005886113), (8, 0.81685746), (9, 0.0058851438)]
bolch tobias 10950 Bolch Tobias 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/454 tazio, paul frank PANGAEA - Data Publisher for Earth & Environmental Science 2018 Glacier, inventory, Pamir, Karakoram,, files,, supplement, Mölg,, Nico;, Bolch,, Tobias;, Rastner,, Philipp;, Strozzi,, Tazio;, Paul,, Frank, (2018):, consistent, glacier, inventory, Karakoram, Pamir, derived, Landsat, data:, distribution, debris, cover, mapping, challenges., Earth, System, Science, Data,, 10(4),, 1807-1827 [(0, 0.0008070046), (1, 0.0008071417), (2, 0.0008070531), (3, 0.0008070165), (4, 0.0008070648), (5, 0.00080716313), (6, 0.00080702506), (7, 0.029993635), (8, 0.96354973), (9, 0.0008071782)]
bolvin d. t. 10196 Bolvin D. T. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/119 huffman g. j., nelkin e. j., adler r. f. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 Version, Combined, Precipitation [(0, 0.0005750675), (1, 0.00057512365), (2, 0.00057504704), (3, 0.015637718), (4, 0.0262197), (5, 0.14349507), (6, 0.00057506375), (7, 0.7978044), (8, 0.000575174), (9, 0.013967618)]
bongiovanni giovanni 10852 Bongiovanni Giovanni 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
boniolo graziano 10847 Boniolo Graziano 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
bonomo giovanni 10614 Bonomo Giovanni 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/299 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.06490304), (1, 0.1070259), (2, 0.18610051), (3, 0.3643822), (4, 0.0011773852), (5, 0.0011773492), (6, 0.0011774445), (7, 0.0011774695), (8, 0.27170125), (9, 0.0011774856)]
bonomo giovanni 10695 Bonomo Giovanni https://www.aifb.kit.edu/web/DSKG/dataset/351 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.0024406072), (1, 0.0024404959), (2, 0.48463523), (3, 0.3690657), (4, 0.0024402626), (5, 0.0024400789), (6, 0.0024400258), (7, 0.0024401515), (8, 0.12921718), (9, 0.0024402505)]
bontcheva kalina 10455 Bontcheva Kalina 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/242 derczynski leon, zubiaga arkaitz, kochkina elena, gorrell genevieve, aker ahmet, liakata maria Figshare 2019 RumourEval [(0, 0.0034522405), (1, 0.0034517262), (2, 0.0034515297), (3, 0.0034516058), (4, 0.63409746), (5, 0.0034525406), (6, 0.19449508), (7, 0.0034517439), (8, 0.14724432), (9, 0.00345177)]
bordoni paola 10827 Bordoni Paola 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
borich michael 11084 Borich Michael 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/515 kan erik, anglin julia, thompson paul 2016 Facilitating, meta-analyses, clinical, neuroimaging, through, ENIGMA, wrapper, scripts [(0, 0.26658294), (1, 0.2580177), (2, 0.06263722), (3, 0.000776), (4, 0.0007760189), (5, 0.000775976), (6, 0.0007760049), (7, 0.009509435), (8, 0.39937264), (9, 0.00077607424)]
borner janus 10378 Borner Janus 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/223 pick christian, thiede jenny, kolawole olatunji matthew, tanyi kingsley manchang, m. cottontail veronika, wellinghausen nele Dryad Digital Repository 2015 Concatenated, multigene, aignments [(0, 0.21523102), (1, 0.005003556), (2, 0.74474365), (3, 0.0050041066), (4, 0.005002706), (5, 0.0050027766), (6, 0.005002784), (7, 0.005003692), (8, 0.0050028167), (9, 0.005002891)]
borowiec marek l. 11003 Borowiec Marek L. 95457728, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/482 k. lee ernest, c. chiu joanna, c. plachetzki david Dryad Digital Repository 2015 RAxML, Concatenated [(0, 0.004349888), (1, 0.0043510166), (2, 0.9608475), (3, 0.0043499633), (4, 0.004349839), (5, 0.0043508336), (6, 0.0043499656), (7, 0.004350564), (8, 0.0043499204), (9, 0.0043505062)]
bosch wolfgang 10569 Bosch Wolfgang 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/274 wekerle claudia, seitz florian PANGAEA - Data Publisher for Earth & Environmental Science 2019 Geostrophic, Currents, northern, Nordic, Combined, Dataset, Multi-Mission, Satellite, Altimetry, Ocean, Modeling, (data),, supplement, Müller,, Felix, Dettmering,, Denise;, Wekerle,, Claudia;, Schwatke,, Christian;, Bosch,, Wolfgang;, Seitz,, Florian, review):, Geostrophic, Currents, northern, Nordic, Combined, Dataset, Multi-Mission, Satellite, Altimetry, Ocean, Modeling., Earth, System, Science, Discussions [(0, 0.0009908123), (1, 0.090385415), (2, 0.0009910781), (3, 0.0009908547), (4, 0.0009908276), (5, 0.71067846), (6, 0.18305522), (7, 0.009935443), (8, 0.000990988), (9, 0.0009909158)]
bouchez olivier 10943 Bouchez Olivier 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/453 cogne yannick, pible olivier, gouveia duarte, francois adeline, eche camille, ford alex, geffard olivier, armengaud jean, chaumot arnaud, almunia christine figshare 2019 Metadata, record, transcriptomes, gammarid, individuals, proteogenomic, analysis, seven, taxonomic, groups [(0, 0.0050043194), (1, 0.0050041666), (2, 0.0050037466), (3, 0.005003414), (4, 0.0050031887), (5, 0.0050032004), (6, 0.0050044227), (7, 0.0050036465), (8, 0.95496607), (9, 0.0050038155)]
bouchut anne 10005 Bouchut Anne 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/6 r. chawla aarti, jeffers victoria, hudmon andy, j. sullivan jr. william Dryad Digital Repository 2015 files [(0, 0.16967253), (1, 0.004352842), (2, 0.004354036), (3, 0.0043527065), (4, 0.0043533035), (5, 0.0043523936), (6, 0.004353722), (7, 0.7955036), (8, 0.0043524876), (9, 0.0043523554)]
bowles marlin l. 10668 Bowles Marlin L. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/337 larkin daniel j., l. hipp andrew, kattge jens, prescott william, tonietto rebecca k., jacobi sarah k. Dryad Digital Repository 2015 Community, phylogeny [(0, 0.27219525), (1, 0.6049329), (2, 0.0055617527), (3, 0.0055603785), (4, 0.0055585047), (5, 0.00555856), (6, 0.005558599), (7, 0.0055593955), (8, 0.08395417), (9, 0.0055605303)]
boye wangensteen 11213 Boye Wangensteen 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/1207 Tanums, store, rettskrivningsordbok [(0, 0.099998906), (1, 0.09999779), (2, 0.10000096), (3, 0.100003056), (4, 0.10000011), (5, 0.10000117), (6, 0.10000168), (7, 0.09999904), (8, 0.099997364), (9, 0.09999994)]
brambilla alice 10962 Brambilla Alice 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/461 keller lukas, bassano bruno, grossen christine Dryad Digital Repository 2017 heterozygosity-fitness [(0, 0.0028594495), (1, 0.0028595387), (2, 0.0028591931), (3, 0.0028589326), (4, 0.0028587556), (5, 0.002858702), (6, 0.0028587976), (7, 0.9742685), (8, 0.0028594194), (9, 0.0028587575)]
brandsma t. 10534 Brandsma T. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
bravo carlos 10180 Bravo Carlos 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/109 cordovez juan manuel, renjifo camila, santos-vega mauricio Figshare 2019 Incidence, dataset [(0, 0.014297998), (1, 0.014298366), (2, 0.44313508), (3, 0.014297512), (4, 0.44248083), (5, 0.0142975105), (6, 0.0142975105), (7, 0.014299637), (8, 0.014298005), (9, 0.014297529)]
breitman maria f. 10291 Breitman Maria F. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/168 c. bagley justin, alda fernando, bermingham eldredge, p. van, berghe eric, b. johnson jerald Dryad Digital Repository 2015 concatenated, mtDNA, dataset [(0, 0.12771718), (1, 0.004003189), (2, 0.0040033692), (3, 0.8402588), (4, 0.004002839), (5, 0.004002803), (6, 0.0040027713), (7, 0.0040029683), (8, 0.0040030032), (9, 0.004003113)]
brew david 10581 Brew David https://www.aifb.kit.edu/web/DSKG/dataset/284 Figshare 2019 Water, Analyte, Concentrations [(0, 0.012508506), (1, 0.012508806), (2, 0.012510761), (3, 0.012508606), (4, 0.012510556), (5, 0.012511156), (6, 0.012511559), (7, 0.11851366), (8, 0.78140736), (9, 0.01250908)]
brey thomas 10071 Brey Thomas 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/42 hendrik PANGAEA - Data Publisher for Earth & Environmental Science 2019 Spatial, distribution, flying, seabird, (Antarctic, petrel), penguins, (Adélie, penguin,, Emperor, penguin), wider, Weddell, (Antarctica), links, ArcGIS, packages [(0, 0.00048581202), (1, 0.00048583993), (2, 0.0004858077), (3, 0.00048580786), (4, 0.00048578423), (5, 0.0004858905), (6, 0.059593845), (7, 0.25404486), (8, 0.00048588752), (9, 0.6829605)]
brey thomas 11074 Brey Thomas 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/504 hendrik PANGAEA - Data Publisher for Earth & Environmental Science 2019 Spatial, distribution, zoobenthos, (sponges,, echinoderms), wider, Weddell, (Antarctica), links, ArcGIS, packages [(0, 0.0011777474), (1, 0.0011782402), (2, 0.0011777619), (3, 0.21882609), (4, 0.001177997), (5, 0.001178056), (6, 0.0011778533), (7, 0.26097256), (8, 0.33667588), (9, 0.17645784)]
brocklehurst neil 10217 Brocklehurst Neil 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/130 Dryad Digital Repository 2018 Example, dataset [(0, 0.008341577), (1, 0.008339723), (2, 0.32284954), (3, 0.008340251), (4, 0.008338942), (5, 0.2686248), (6, 0.008340512), (7, 0.008339008), (8, 0.35014617), (9, 0.008339478)]
brodsky alexander s 10044 Brodsky Alexander S 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/26 carmo-fonseca maria Figshare 2011 Clustering, analysis, microarray [(0, 0.22243015), (1, 0.5739249), (2, 0.0009815898), (3, 0.0009815783), (4, 0.000981352), (5, 0.0009814552), (6, 0.0009813579), (7, 0.0009814956), (8, 0.19677453), (9, 0.0009815424)]
brohan p. 10535 Brohan P. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
brohan phillip 10480 Brohan Phillip 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
bronnimann stefan 10488 Bronnimann Stefan 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
brown kevin r 10911 Brown Kevin R 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/440 jurisica igor Figshare 2011 Properties, networks [(0, 0.7596975), (1, 0.23098882), (2, 0.0011640837), (3, 0.0011642361), (4, 0.0011640143), (5, 0.0011640182), (6, 0.0011640941), (7, 0.0011644895), (8, 0.0011642799), (9, 0.0011645083)]
brunet manola 10489 Brunet Manola 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
bruyere c. l. 11121 Bruyere C. L. https://www.aifb.kit.edu/web/DSKG/dataset/531 monaghan a. j., yates d. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2014 Global, Bias-Corrected, CMIP5, Output, Support, WRF/MPAS, Research [(0, 0.14588985), (1, 0.000827357), (2, 0.0008272533), (3, 0.00082737295), (4, 0.0008273714), (5, 0.5137526), (6, 0.0008272674), (7, 0.1004182), (8, 0.23497531), (9, 0.0008274139)]
brzyska krystyna 10600 Brzyska Krystyna 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/296 zielinski piotr, dudek katarzyna, babik wieslaw Dryad Digital Repository 2016 dataset [(0, 0.008337993), (1, 0.008339686), (2, 0.83854425), (3, 0.008336685), (4, 0.09474639), (5, 0.008336769), (6, 0.008337153), (7, 0.008340801), (8, 0.00834294), (9, 0.008337306)]
bucci augusto 10828 Bucci Augusto 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
budecevic sanja 10200 Budečević Sanja 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/122 jovanovic sanja manitasevic, wang hui, sapir yuval, imbert eric Dryad Digital Repository 2017 species [(0, 0.011115212), (1, 0.42883363), (2, 0.48224837), (3, 0.011114705), (4, 0.01111513), (5, 0.011114033), (6, 0.011115797), (7, 0.011114493), (8, 0.011114194), (9, 0.011114448)]
buer jan 10400 Buer Jan 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/227 feng, zeng an-ping Figshare 2011 Shifted, cumulative, regulation [(0, 0.70934176), (1, 0.002002305), (2, 0.0020024974), (3, 0.0020017226), (4, 0.0020020579), (5, 0.0020016932), (6, 0.0020017282), (7, 0.27464175), (8, 0.002002669), (9, 0.0020018462)]
bumgarner roger e 10330 Bumgarner Roger E 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/196 yeung ka yee, medvedovic mario Figshare 2011 overall, approach [(0, 0.47124034), (1, 0.08770295), (2, 0.0019617197), (3, 0.001961685), (4, 0.0019619197), (5, 0.0019616946), (6, 0.0019617123), (7, 0.0019619649), (8, 0.42732406), (9, 0.0019619258)]
bussolino federico 10463 Bussolino Federico 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/243 zanivan sara, cascone ilaria, peyron chiara, molineris ivan, marchio serena, caselle michele Figshare 2011 Non-synchronized, cells [(0, 0.44257465), (1, 0.25085744), (2, 0.2832089), (3, 0.0033364112), (4, 0.0033369483), (5, 0.0033370678), (6, 0.0033364734), (7, 0.003336802), (8, 0.003337486), (9, 0.0033377972)]
buuren stef van 10368 Buuren Stef Van 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/214 toet alexander, erp jan b.f. van, boertjes erik m. Figshare 2016 draft [(0, 0.0058848374), (1, 0.13605708), (2, 0.0058861887), (3, 0.0058875135), (4, 0.005885186), (5, 0.005884874), (6, 0.0058856793), (7, 0.005886113), (8, 0.81685746), (9, 0.0058851438)]
buxbaum joseph d. 10428 Buxbaum Joseph D. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
byczek coline 10239 Byczek Coline 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/144 mouchet maud, turkelboom francis, meersmans jeroen, lavorel sandra Dryad Digital Repository 2015 Richness, ecosystem, services [(0, 0.0038500698), (1, 0.3646028), (2, 0.0038500747), (3, 0.079086386), (4, 0.31043294), (5, 0.003849183), (6, 0.22277877), (7, 0.0038496633), (8, 0.0038506726), (9, 0.0038494663)]
byron johnson 11277 Byron Johnson 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2056 lu yengfang, carson mencken, rodney stark, eric liu, anna sun, chiu heu-yuan, fenggang yangf, victor yuan 2007 Spiritual, Study, Chinese, Residents [(0, 0.020010915), (1, 0.21982822), (2, 0.02002011), (3, 0.020011319), (4, 0.02001927), (5, 0.02001087), (6, 0.020023542), (7, 0.020014815), (8, 0.6200476), (9, 0.020013252)]
c. bagley justin 10289 C. Bagley Justin 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/168 alda fernando, breitman maria f., bermingham eldredge, p. van, berghe eric, b. johnson jerald Dryad Digital Repository 2015 concatenated, mtDNA, dataset [(0, 0.12771718), (1, 0.004003189), (2, 0.0040033692), (3, 0.8402588), (4, 0.004002839), (5, 0.004002803), (6, 0.0040027713), (7, 0.0040029683), (8, 0.0040030032), (9, 0.004003113)]
c. chiu joanna 11005 C. Chiu Joanna 95457728, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/482 borowiec marek l., k. lee ernest, c. plachetzki david Dryad Digital Repository 2015 RAxML, Concatenated [(0, 0.004349888), (1, 0.0043510166), (2, 0.9608475), (3, 0.0043499633), (4, 0.004349839), (5, 0.0043508336), (6, 0.0043499656), (7, 0.004350564), (8, 0.0043499204), (9, 0.0043505062)]
c. lalor edmund 11104 C. Lalor Edmund 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/521 p. broderick michael, j. anderson andrew, di liberto giovanni m., crosse michael j. Dryad Digital Repository 2018 Natural, Speech, Dataset [(0, 0.006258076), (1, 0.20466216), (2, 0.006258722), (3, 0.3663062), (4, 0.0062574036), (5, 0.17043236), (6, 0.13698627), (7, 0.006257527), (8, 0.0903242), (9, 0.006257092)]
c. plachetzki david 11006 C. Plachetzki David 95457728, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/482 borowiec marek l., k. lee ernest, c. chiu joanna Dryad Digital Repository 2015 RAxML, Concatenated [(0, 0.004349888), (1, 0.0043510166), (2, 0.9608475), (3, 0.0043499633), (4, 0.004349839), (5, 0.0043508336), (6, 0.0043499656), (7, 0.004350564), (8, 0.0043499204), (9, 0.0043505062)]
caielli grazia 10848 Caielli Grazia 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
camuffo dario 10490 Camuffo Dario 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
cantore luciana 10830 Cantore Luciana 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
caple mackenzie 10142 Caple Mackenzie https://www.aifb.kit.edu/web/DSKG/dataset/87 charbonneau amanda, tack david, lale allison, goldston josh, conner emma, barazani oz, ziffer-berger jotham, dworkin ian, conner jeff Dryad Digital Repository 2018 [(0, 0.06347562), (1, 0.0052664205), (2, 0.44835892), (3, 0.005266149), (4, 0.0052664382), (5, 0.0052660224), (6, 0.005265994), (7, 0.451302), (8, 0.005266528), (9, 0.005265935)]
cara fabrizio 10823 Cara Fabrizio 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
carannante simona 10831 Carannante Simona 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
cardillo marcel 10990 Cardillo Marcel 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/474 skeels alexander Dryad Digital Repository 2018 Table [(0, 0.005559777), (1, 0.005559733), (2, 0.31426078), (3, 0.005559739), (4, 0.005559166), (5, 0.0055603427), (6, 0.20653859), (7, 0.44028208), (8, 0.0055606496), (9, 0.0055591413)]
carmo-fonseca maria 10045 Carmo-Fonseca Maria 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/26 brodsky alexander s Figshare 2011 Clustering, analysis, microarray [(0, 0.22243015), (1, 0.5739249), (2, 0.0009815898), (3, 0.0009815783), (4, 0.000981352), (5, 0.0009814552), (6, 0.0009813579), (7, 0.0009814956), (8, 0.19677453), (9, 0.0009815424)]
caro eleonora 11108 Caro Eleonora 185592680, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/522 ravetto enri simone, probo massimiliano, renna manuela, lussiana carola, lombardi giampiero, lonati michele Figshare 2018 Dataset.xlsx [(0, 0.0055587357), (1, 0.0055583618), (2, 0.005558879), (3, 0.81081873), (4, 0.0055576377), (5, 0.005557941), (6, 0.0055582672), (7, 0.14471501), (8, 0.0055579045), (9, 0.005558505)]
carrara paola 10802 Carrara Paola 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/403 de falco giovanni, conforti alessandro, simeone simone, lanucara simone PANGAEA - Data Publisher for Earth & Environmental Science 2018 Submerged, deposits, Western, Sardinia,, Mediterranean, organised, interoperable, Spatial, Infrastructure,, supplement, Brambilla,, Walter;, Conforti,, Alessandro;, Simeone,, Simone;, Carrara,, Paola;, Lanucara,, Simone;, Falco,, Giovanni, (2019):, submerged, deposits, organised, interoperable, spatial, infrastructure, (Western, Sardinia,, Mediterranean, Sea)., Earth, System, Science, Data,, 11(2),, 515-527 [(0, 0.0007885664), (1, 0.52333206), (2, 0.011065678), (3, 0.008872817), (4, 0.00078854547), (5, 0.0007885023), (6, 0.0007885604), (7, 0.14595369), (8, 0.22973014), (9, 0.07789147)]
carson mencken 11276 Carson Mencken 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2056 lu yengfang, byron johnson, rodney stark, eric liu, anna sun, chiu heu-yuan, fenggang yangf, victor yuan 2007 Spiritual, Study, Chinese, Residents [(0, 0.020010915), (1, 0.21982822), (2, 0.02002011), (3, 0.020011319), (4, 0.02001927), (5, 0.02001087), (6, 0.020023542), (7, 0.020014815), (8, 0.6200476), (9, 0.020013252)]
carter anthony 10612 Carter Anthony 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/299 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.06490304), (1, 0.1070259), (2, 0.18610051), (3, 0.3643822), (4, 0.0011773852), (5, 0.0011773492), (6, 0.0011774445), (7, 0.0011774695), (8, 0.27170125), (9, 0.0011774856)]
carter anthony 10693 Carter Anthony https://www.aifb.kit.edu/web/DSKG/dataset/351 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.0024406072), (1, 0.0024404959), (2, 0.48463523), (3, 0.3690657), (4, 0.0024402626), (5, 0.0024400789), (6, 0.0024400258), (7, 0.0024401515), (8, 0.12921718), (9, 0.0024402505)]
carter megan 10210 Carter Megan 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/123 hale matthew c., colletti john a., gahr scott a.,, scardina julie, thrower frank p., harmon matthew, phillips ruth b., h. thorgaard gary, nichols krista m. Dryad Digital Repository 2014 mapping [(0, 0.004004699), (1, 0.0040043215), (2, 0.49930698), (3, 0.004006286), (4, 0.0040037967), (5, 0.0040038237), (6, 0.0040040216), (7, 0.004006944), (8, 0.004004246), (9, 0.4686549)]
carvajal jose i. 10177 Carvajal Jose I. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/107 w. rouse greg, wilson nerida g., vrijenhoek robert c. Dryad Digital Repository 2016 Phylogenomic, Supermatrices [(0, 0.90988296), (1, 0.010013997), (2, 0.01001248), (3, 0.010011951), (4, 0.010013651), (5, 0.010012311), (6, 0.010011547), (7, 0.010013115), (8, 0.010014927), (9, 0.010013072)]
cascone ilaria 10458 Cascone Ilaria 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/243 zanivan sara, peyron chiara, molineris ivan, marchio serena, caselle michele, bussolino federico Figshare 2011 Non-synchronized, cells [(0, 0.44257465), (1, 0.25085744), (2, 0.2832089), (3, 0.0033364112), (4, 0.0033369483), (5, 0.0033370678), (6, 0.0033364734), (7, 0.003336802), (8, 0.003337486), (9, 0.0033377972)]
caselle michele 10462 Caselle Michele 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/243 zanivan sara, cascone ilaria, peyron chiara, molineris ivan, marchio serena, bussolino federico Figshare 2011 Non-synchronized, cells [(0, 0.44257465), (1, 0.25085744), (2, 0.2832089), (3, 0.0033364112), (4, 0.0033369483), (5, 0.0033370678), (6, 0.0033364734), (7, 0.003336802), (8, 0.003337486), (9, 0.0033377972)]
castaldelli giuseppe 10132 Castaldelli Giuseppe 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/82 aschonitis vassilis g, mastrocicco micol, ghirardini andrea, papamichail dimitris, kleoniki, colombani nicolo, fano elisa-anna PANGAEA - Data Publisher for Earth & Environmental Science 2017 resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation,, links, ESRI-grid, files,, supplement, Aschonitis,, Vassilis, Papamichail,, Dimitris;, Demertzi,, Kleoniki;, Colombani,, Nicolo;, Mastrocicco,, Micol;, Ghirardini,, Andrea;, Castaldelli,, Giuseppe;, Fano,, Elisa-Anna, (2017):, High-resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation., Earth, System, Science, Data,, 9(2),, 615-638 [(0, 0.0005132323), (1, 0.0005132701), (2, 0.00051321497), (3, 0.00051319704), (4, 0.00051321386), (5, 0.0005132613), (6, 0.028460743), (7, 0.2619134), (8, 0.6910191), (9, 0.015527402)]
castiglioni bianca 10270 Castiglioni Bianca 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/159 lazzari barbara, frattini stefano, chessa stefania, talenti andrea, marsan paolo, crepaldi paola, pagnacco giulio, williams john, stella alessandra Figshare 2018 Additional [(0, 0.016672082), (1, 0.016670983), (2, 0.016673623), (3, 0.6832785), (4, 0.016671475), (5, 0.016670097), (6, 0.18334706), (7, 0.01667465), (8, 0.016671354), (9, 0.016670162)]
castro fernando 10493 Castro Fernando 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
catalano santiago a. 10301 Catalano Santiago A. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/180 marcos d. Dryad Digital Repository 2014 Supplementary [(0, 0.94997835), (1, 0.005558115), (2, 0.005558177), (3, 0.005557236), (4, 0.0055572074), (5, 0.0055572283), (6, 0.005558993), (7, 0.0055576055), (8, 0.005558949), (9, 0.0055580963)]
causey dwight 10403 Causey Dwight 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/229 pohl moritz, stead david, martin samuel, secombes christopher Figshare 2018 Additional [(0, 0.6282684), (1, 0.008335959), (2, 0.00834176), (3, 0.30503765), (4, 0.008335613), (5, 0.008336173), (6, 0.008335856), (7, 0.008336423), (8, 0.008336499), (9, 0.00833565)]
ceausu silvia 10153 Ceausu Silvia 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/91 merckx thomas, sossai esther, sapage manuel, murilo miranda, pereira henrique m. Figshare 2018 JournalInformation [(0, 0.010002942), (1, 0.6484298), (2, 0.01000229), (3, 0.010002037), (4, 0.010002819), (5, 0.0100023635), (6, 0.27154213), (7, 0.010004771), (8, 0.010006264), (9, 0.010004547)]
ceder gerbrand 10822 Ceder Gerbrand https://www.aifb.kit.edu/web/DSKG/dataset/410 jong maarten de, chen wei, asta mark, persson kristin, angsten thomas, notestine randy, gamst anthony, sluiter marcel, chaitanya krishna ande, sybrand van der, plata jose j., toher cormac, curtarolo stefano Figshare 2018 Elastic, Tensor [(0, 0.0025006267), (1, 0.0025008286), (2, 0.0025004984), (3, 0.9774937), (4, 0.002500651), (5, 0.0025005413), (6, 0.0025006502), (7, 0.0025006433), (8, 0.0025011175), (9, 0.002500725)]
chaitanya krishna ande 10817 Chaitanya Krishna Ande https://www.aifb.kit.edu/web/DSKG/dataset/410 jong maarten de, chen wei, asta mark, persson kristin, angsten thomas, notestine randy, gamst anthony, sluiter marcel, sybrand van der, plata jose j., toher cormac, curtarolo stefano, ceder gerbrand Figshare 2018 Elastic, Tensor [(0, 0.0025006267), (1, 0.0025008286), (2, 0.0025004984), (3, 0.9774937), (4, 0.002500651), (5, 0.0025005413), (6, 0.0025006502), (7, 0.0025006433), (8, 0.0025011175), (9, 0.002500725)]
chang nadine 10107 Chang Nadine 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/71 pyles john, marcus austin, abhinav gupta, tarr michael, aminoff elissa Figshare 2019 BOLD5000 [(0, 0.021280022), (1, 0.08836781), (2, 0.0005441114), (3, 0.00054414745), (4, 0.00054414535), (5, 0.00054410304), (6, 0.00054413086), (7, 0.034354564), (8, 0.8527328), (9, 0.00054415426)]
chang-gyu hahn 10420 Chang-Gyu Hahn 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
chaoqun lu 10251 Chaoqun Lu 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/149 xuecao li, yuyu zhou, meng lin, ghassem asrar, qiusheng wu Figshare 2019 dataset, 30-meter, annual, vegetation, phenology, indicators, (1985-2015), urban, areas, conterminous, United, States [(0, 0.001516307), (1, 0.73037845), (2, 0.0015163294), (3, 0.0015162535), (4, 0.0015162897), (5, 0.0015165778), (6, 0.0015167102), (7, 0.0015168199), (8, 0.25748992), (9, 0.0015164119)]
charbonneau amanda 10138 Charbonneau Amanda https://www.aifb.kit.edu/web/DSKG/dataset/87 tack david, lale allison, goldston josh, caple mackenzie, conner emma, barazani oz, ziffer-berger jotham, dworkin ian, conner jeff Dryad Digital Repository 2018 [(0, 0.06347562), (1, 0.0052664205), (2, 0.44835892), (3, 0.005266149), (4, 0.0052664382), (5, 0.0052660224), (6, 0.005265994), (7, 0.451302), (8, 0.005266528), (9, 0.005265935)]
charlie yaris 11078 Charlie Yaris 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/509 Charities, United, States [(0, 0.0058905142), (1, 0.62732357), (2, 0.005891206), (3, 0.0058906954), (4, 0.0058920025), (5, 0.09879477), (6, 0.06694105), (7, 0.0058916193), (8, 0.0058912067), (9, 0.17159338)]
chaumot arnaud 10948 Chaumot Arnaud 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/453 cogne yannick, pible olivier, gouveia duarte, francois adeline, bouchez olivier, eche camille, ford alex, geffard olivier, armengaud jean, almunia christine figshare 2019 Metadata, record, transcriptomes, gammarid, individuals, proteogenomic, analysis, seven, taxonomic, groups [(0, 0.0050043194), (1, 0.0050041666), (2, 0.0050037466), (3, 0.005003414), (4, 0.0050031887), (5, 0.0050032004), (6, 0.0050044227), (7, 0.0050036465), (8, 0.95496607), (9, 0.0050038155)]
chen chong 10902 Chen Chong 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/436 guo yuxin, xie tong, cui wei, meng haotian, jin xiaoye, zhu bofeng Dryad Digital Repository 2018 RAW_DATA [(0, 0.24413738), (1, 0.10899984), (2, 0.27884537), (3, 0.0019253815), (4, 0.35646468), (5, 0.001925676), (6, 0.0019252333), (7, 0.001925537), (8, 0.0019255829), (9, 0.0019253182)]
chen guo 11012 Chen Guo 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/486 xiaolu tang, shaohui fan, wenjie zhang, sicong gao, leilei shi figshare 2019 gridded, dataset, belowground, autotrophic, respiration, global, terrestrial, ecosystems, upscaling, observations [(0, 0.00091790804), (1, 0.0009178842), (2, 0.00091789634), (3, 0.0009178029), (4, 0.032477044), (5, 0.00091784936), (6, 0.0009178825), (7, 0.932198), (8, 0.00091790507), (9, 0.028899837)]
chen hongmei 11015 Chen Hongmei https://www.aifb.kit.edu/web/DSKG/dataset/487 graham david, yang ziming, chu rosalie, liang liyuan, wullschleger stan, gu baohua Oak Ridge National Laboratory, TN, Oak Ridge, US 2018 ESI-FTICR-MS, Molecular, Characterization, Degradation, under, Warming, Tundra, Soils, Barrow,, Alaska [(0, 0.0020430337), (1, 0.0020430312), (2, 0.0020425203), (3, 0.5381932), (4, 0.0020427343), (5, 0.002042781), (6, 0.0020428018), (7, 0.20485827), (8, 0.24264874), (9, 0.0020428668)]
chen jin 10276 Chen Jin 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/162 goodale uromi, kotagama sarath wimalabandara, sidhu swati, goodale eben Dryad Digital Repository 2015 Transect, database [(0, 0.18610847), (1, 0.21436661), (2, 0.0024411567), (3, 0.36698642), (4, 0.002440713), (5, 0.0024403601), (6, 0.00244038), (7, 0.0024407038), (8, 0.21789475), (9, 0.0024404053)]
chen jing m. 10234 Chen Jing M. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/143 zheng yi, ruoque shen, yawen wang, xiangqian li, shuguang liu, shunlin liang, weimin ju, zhang li Figshare 2019 Improved, estimate, global, gross, primary, production, reproducing, long-term, variation,, 1982-2017 [(0, 0.0013358403), (1, 0.0013361537), (2, 0.0013358513), (3, 0.0013357027), (4, 0.0013356808), (5, 0.18218006), (6, 0.0013358536), (7, 0.60610604), (8, 0.16660947), (9, 0.03708934)]
chen wei 10307 Chen Wei 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/185 jong maarten de, geerlings henry, asta mark, persson kristin Figshare 2018 Piezoelectric, Tensor [(0, 0.003704297), (1, 0.0037044964), (2, 0.0037042042), (3, 0.96666), (4, 0.003704217), (5, 0.0037043015), (6, 0.0037044443), (7, 0.003704447), (8, 0.003704843), (9, 0.0037047495)]
chen wei 10441 Chen Wei 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/240 persson kristin, mrdjenovich david, ballouz eric, liu miao, winston donald, graf tanja, thomas d., prinz fritz b. Figshare 2018 Dielectric, Constant [(0, 0.0020839851), (1, 0.002084241), (2, 0.0020839015), (3, 0.81947345), (4, 0.0020839167), (5, 0.0020840997), (6, 0.002084219), (7, 0.002084031), (8, 0.16385399), (9, 0.0020841232)]
chen wei 10632 Chen Wei 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/313 xiaoning wu, xuzhen yan, anjian xu, aiting yang Figshare 2019 Supplementary, Table [(0, 0.012514355), (1, 0.012509654), (2, 0.0125105595), (3, 0.012509655), (4, 0.012509654), (5, 0.012509654), (6, 0.01250982), (7, 0.8874058), (8, 0.0125108585), (9, 0.012509978)]
chen wei 10810 Chen Wei https://www.aifb.kit.edu/web/DSKG/dataset/410 jong maarten de, asta mark, persson kristin, angsten thomas, notestine randy, gamst anthony, sluiter marcel, chaitanya krishna ande, sybrand van der, plata jose j., toher cormac, curtarolo stefano, ceder gerbrand Figshare 2018 Elastic, Tensor [(0, 0.0025006267), (1, 0.0025008286), (2, 0.0025004984), (3, 0.9774937), (4, 0.002500651), (5, 0.0025005413), (6, 0.0025006502), (7, 0.0025006433), (8, 0.0025011175), (9, 0.002500725)]
chen yi 10750 Chen Yi 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/387 yuchuan luo, zhang zhao, ziyue li, fulu tao Figshare 2019 ChinaCropPhen1km:, high-resolution, phenological, dataset, three, staple, crops, China, during, 2000-2015, based, products [(0, 0.0020415608), (1, 0.002041746), (2, 0.0020420388), (3, 0.0020413732), (4, 0.0020416616), (5, 0.0020414344), (6, 0.98162407), (7, 0.0020417627), (8, 0.0020419608), (9, 0.0020424204)]
cheng-jen lee 11239 Cheng-Jen Lee 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/1891 andrea wei-ching huang [(0, 0.009095734), (1, 0.59337664), (2, 0.00909773), (3, 0.009092437), (4, 0.25391316), (5, 0.009093888), (6, 0.08904918), (7, 0.009093552), (8, 0.009094813), (9, 0.00909285)]
chengran zhou 10116 Chengran Zhou 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/77 yang hua, guolin li, wang jing, gao ping, maolin wang, wang rui, zhao yun figshare 2019 Metadata, record, Reference, small, multiple, tissues, Davidia, involucrata, Baill [(0, 0.0052666413), (1, 0.005266552), (2, 0.39063543), (3, 0.005265295), (4, 0.0052668964), (5, 0.005265483), (6, 0.5672355), (7, 0.005265628), (8, 0.0052664257), (9, 0.0052661407)]
chessa stefania 10268 Chessa Stefania 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/159 lazzari barbara, frattini stefano, talenti andrea, castiglioni bianca, marsan paolo, crepaldi paola, pagnacco giulio, williams john, stella alessandra Figshare 2018 Additional [(0, 0.016672082), (1, 0.016670983), (2, 0.016673623), (3, 0.6832785), (4, 0.016671475), (5, 0.016670097), (6, 0.18334706), (7, 0.01667465), (8, 0.016671354), (9, 0.016670162)]
chew amy e. 10334 Chew Amy E. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/197 rankin brian d., w. fox jeremy, barron-ortiz christian r., a. holroyd patricia, ludtke joshua a., yang xingkai, m. theodor jessica Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0029424382), (1, 0.0029434902), (2, 0.0029421244), (3, 0.002942372), (4, 0.0029427286), (5, 0.97351766), (6, 0.0029422862), (7, 0.0029421311), (8, 0.0029424964), (9, 0.0029422138)]
chew amy e. 10875 Chew Amy E. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/417 rankin brian d., w. fox jeremy, barron-ortiz christian r., a. holroyd patricia, ludtke joshua a., yang xingkai, m. theodor jessica Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0027040981), (1, 0.0027046625), (2, 0.002703693), (3, 0.002703763), (4, 0.0027044355), (5, 0.9756645), (6, 0.002703699), (7, 0.0027036292), (8, 0.0027038676), (9, 0.002703686)]
chiu heu-yuan 11281 Chiu Heu-Yuan 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2056 lu yengfang, carson mencken, byron johnson, rodney stark, eric liu, anna sun, fenggang yangf, victor yuan 2007 Spiritual, Study, Chinese, Residents [(0, 0.020010915), (1, 0.21982822), (2, 0.02002011), (3, 0.020011319), (4, 0.02001927), (5, 0.02001087), (6, 0.020023542), (7, 0.020014815), (8, 0.6200476), (9, 0.020013252)]
chris 10506 Chris 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
chris crawford 10595 Chris Crawford 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/292 Newsgroups [(0, 0.0016678236), (1, 0.18513978), (2, 0.0016678069), (3, 0.0016677626), (4, 0.0016681027), (5, 0.0016680772), (6, 0.0016677842), (7, 0.5093022), (8, 0.18959877), (9, 0.10595191)]
chris crawford 10660 Chris Crawford 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/334 Cereals [(0, 0.03402142), (1, 0.9538476), (2, 0.0015162408), (3, 0.0015162621), (4, 0.0015163012), (5, 0.0015166557), (6, 0.0015162161), (7, 0.0015162333), (8, 0.0015166309), (9, 0.0015164331)]
chris m. 11143 Chris M. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/545 jacobs grant h., peter a., warren p. Figshare 2011 available, species [(0, 0.16329685), (1, 0.30450198), (2, 0.001888647), (3, 0.04486971), (4, 0.0018884878), (5, 0.0018887892), (6, 0.0018884197), (7, 0.36945665), (8, 0.108431995), (9, 0.0018884961)]
christian urcuqui andres navarro 10264 Christian Urcuqui Andrés Navarro 41008148, 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/157 2017 Malicious, Benign, Websites [(0, 0.00034275392), (1, 0.06402974), (2, 0.01279781), (3, 0.004423509), (4, 0.059619065), (5, 0.00034273978), (6, 0.00034286187), (7, 0.000342796), (8, 0.2586427), (9, 0.599116)]
chu rosalie 11017 Chu Rosalie https://www.aifb.kit.edu/web/DSKG/dataset/487 graham david, chen hongmei, yang ziming, liang liyuan, wullschleger stan, gu baohua Oak Ridge National Laboratory, TN, Oak Ridge, US 2018 ESI-FTICR-MS, Molecular, Characterization, Degradation, under, Warming, Tundra, Soils, Barrow,, Alaska [(0, 0.0020430337), (1, 0.0020430312), (2, 0.0020425203), (3, 0.5381932), (4, 0.0020427343), (5, 0.002042781), (6, 0.0020428018), (7, 0.20485827), (8, 0.24264874), (9, 0.0020428668)]
ciais philippe 10739 Ciais Philippe 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/382 peng shushi, makowski david, li wei Figshare 2018 Reference, dataset [(0, 0.012517096), (1, 0.012518335), (2, 0.012516793), (3, 0.012516793), (4, 0.012516846), (5, 0.012516793), (6, 0.012517049), (7, 0.012517013), (8, 0.8873463), (9, 0.01251698)]
cipollini ben 11112 Cipollini Ben 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/523 2016 Advancing, science, through, NiData [(0, 0.0010535968), (1, 0.0010536949), (2, 0.029340986), (3, 0.0010536939), (4, 0.0010535846), (5, 0.03154561), (6, 0.29787728), (7, 0.025163015), (8, 0.41428807), (9, 0.19757044)]
clemente lanzetti 11273 Clemente Lanzetti 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/2055 roberto cipriani, vincenzo cesareo, giancarlo rovati 1994 Religion, Italy [(0, 0.1), (1, 0.1), (2, 0.1), (3, 0.1), (4, 0.1), (5, 0.1), (6, 0.1), (7, 0.1), (8, 0.1), (9, 0.1)]
cogliano rocco 10832 Cogliano Rocco 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
cogne yannick 10939 Cogne Yannick 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/453 pible olivier, gouveia duarte, francois adeline, bouchez olivier, eche camille, ford alex, geffard olivier, armengaud jean, chaumot arnaud, almunia christine figshare 2019 Metadata, record, transcriptomes, gammarid, individuals, proteogenomic, analysis, seven, taxonomic, groups [(0, 0.0050043194), (1, 0.0050041666), (2, 0.0050037466), (3, 0.005003414), (4, 0.0050031887), (5, 0.0050032004), (6, 0.0050044227), (7, 0.0050036465), (8, 0.95496607), (9, 0.0050038155)]
cohen jonathan c 10261 Cohen Jonathan C 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/156 yi ming, horton jay d, hobbs helen h, stephens robert m Figshare 2011 example, files, which, multiple, microarray, datasets, analyzed, simultaneously [(0, 0.1363776), (1, 0.0023842782), (2, 0.0023833408), (3, 0.2892783), (4, 0.002383426), (5, 0.0023833641), (6, 0.09284374), (7, 0.0023836694), (8, 0.46719885), (9, 0.0023834463)]
colle sergio 11044 Colle Sergio 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
colletti john a. 10205 Colletti John A. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/123 hale matthew c., gahr scott a.,, scardina julie, thrower frank p., harmon matthew, carter megan, phillips ruth b., h. thorgaard gary, nichols krista m. Dryad Digital Repository 2014 mapping [(0, 0.004004699), (1, 0.0040043215), (2, 0.49930698), (3, 0.004006286), (4, 0.0040037967), (5, 0.0040038237), (6, 0.0040040216), (7, 0.004006944), (8, 0.004004246), (9, 0.4686549)]
collins joel 10096 Collins Joel 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/57 hooper david University of Bath 2017 Strong, Rotational, Anisotropies, Affect, Nonlinear, Chiral, Metamaterials [(0, 0.0009179849), (1, 0.23213328), (2, 0.76052225), (3, 0.00091797835), (4, 0.0009180202), (5, 0.000918135), (6, 0.0009179931), (7, 0.0009181679), (8, 0.0009182094), (9, 0.0009179795)]
colombani nicolo 10131 Colombani Nicolo 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/82 aschonitis vassilis g, mastrocicco micol, ghirardini andrea, papamichail dimitris, kleoniki, castaldelli giuseppe, fano elisa-anna PANGAEA - Data Publisher for Earth & Environmental Science 2017 resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation,, links, ESRI-grid, files,, supplement, Aschonitis,, Vassilis, Papamichail,, Dimitris;, Demertzi,, Kleoniki;, Colombani,, Nicolo;, Mastrocicco,, Micol;, Ghirardini,, Andrea;, Castaldelli,, Giuseppe;, Fano,, Elisa-Anna, (2017):, High-resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation., Earth, System, Science, Data,, 9(2),, 615-638 [(0, 0.0005132323), (1, 0.0005132701), (2, 0.00051321497), (3, 0.00051319704), (4, 0.00051321386), (5, 0.0005132613), (6, 0.028460743), (7, 0.2619134), (8, 0.6910191), (9, 0.015527402)]
comeaux j. 10536 Comeaux J. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
compo g. p. 10525 Compo G. P. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
compo gilbert p. 10478 Compo Gilbert P. 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
conforti alessandro 10800 Conforti Alessandro 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/403 de falco giovanni, simeone simone, carrara paola, lanucara simone PANGAEA - Data Publisher for Earth & Environmental Science 2018 Submerged, deposits, Western, Sardinia,, Mediterranean, organised, interoperable, Spatial, Infrastructure,, supplement, Brambilla,, Walter;, Conforti,, Alessandro;, Simeone,, Simone;, Carrara,, Paola;, Lanucara,, Simone;, Falco,, Giovanni, (2019):, submerged, deposits, organised, interoperable, spatial, infrastructure, (Western, Sardinia,, Mediterranean, Sea)., Earth, System, Science, Data,, 11(2),, 515-527 [(0, 0.0007885664), (1, 0.52333206), (2, 0.011065678), (3, 0.008872817), (4, 0.00078854547), (5, 0.0007885023), (6, 0.0007885604), (7, 0.14595369), (8, 0.22973014), (9, 0.07789147)]
conner emma 10143 Conner Emma https://www.aifb.kit.edu/web/DSKG/dataset/87 charbonneau amanda, tack david, lale allison, goldston josh, caple mackenzie, barazani oz, ziffer-berger jotham, dworkin ian, conner jeff Dryad Digital Repository 2018 [(0, 0.06347562), (1, 0.0052664205), (2, 0.44835892), (3, 0.005266149), (4, 0.0052664382), (5, 0.0052660224), (6, 0.005265994), (7, 0.451302), (8, 0.005266528), (9, 0.005265935)]
conner jeff 10147 Conner Jeff https://www.aifb.kit.edu/web/DSKG/dataset/87 charbonneau amanda, tack david, lale allison, goldston josh, caple mackenzie, conner emma, barazani oz, ziffer-berger jotham, dworkin ian Dryad Digital Repository 2018 [(0, 0.06347562), (1, 0.0052664205), (2, 0.44835892), (3, 0.005266149), (4, 0.0052664382), (5, 0.0052660224), (6, 0.005265994), (7, 0.451302), (8, 0.005266528), (9, 0.005265935)]
cooper catherine m. 10059 Cooper Catherine M. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/32 miller meghan samantha, moresi louis Figshare 2016 Figure3A [(0, 0.0040064887), (1, 0.45549652), (2, 0.0040064747), (3, 0.0040063784), (4, 0.0040062894), (5, 0.004006809), (6, 0.00400691), (7, 0.0040081823), (8, 0.5124489), (9, 0.0040070303)]
cordovez juan manuel 10181 Cordovez Juan Manuel 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/109 bravo carlos, renjifo camila, santos-vega mauricio Figshare 2019 Incidence, dataset [(0, 0.014297998), (1, 0.014298366), (2, 0.44313508), (3, 0.014297512), (4, 0.44248083), (5, 0.0142975105), (6, 0.0142975105), (7, 0.014299637), (8, 0.014298005), (9, 0.014297529)]
cornell lab 11207 Cornell Lab 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/1050 eBird [(0, 0.050001424), (1, 0.050003678), (2, 0.050001424), (3, 0.050001424), (4, 0.050006203), (5, 0.050017238), (6, 0.050001424), (7, 0.5499643), (8, 0.050001424), (9, 0.05000144)]
correia ana m. 10767 Correia Ana M. https://www.aifb.kit.edu/web/DSKG/dataset/392 gandra miguel, liberal marcos, valente raul, agatha gil, rosso massimiliano, pierce graham j. figshare 2019 Metadata, record, dataset, cetacean, occurrences, Eastern, North, Atlantic [(0, 0.26775646), (1, 0.011120489), (2, 0.011119371), (3, 0.011119299), (4, 0.011123657), (5, 0.011119022), (6, 0.011122717), (7, 0.011119022), (8, 0.64327866), (9, 0.011121326)]
corsi adelmo 10849 Corsi Adelmo 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
couloux arnaud 10047 Couloux Arnaud 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/31 wincker patrick, jean marc, noel benjamin, cruaud corinne, da silva corinne, lemainque arnaud, dutreux fabien', lapalu nicolas, linglin juliette, rouxel thierry, balesdent marie-helene Figshare 2018 Genomic, datasets [(0, 0.8874455), (1, 0.012505132), (2, 0.012504966), (3, 0.012509499), (4, 0.012504909), (5, 0.012505869), (6, 0.012506899), (7, 0.012505305), (8, 0.0125064375), (9, 0.012505492)]
courtin claudine 10652 Courtin Claudine 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/332 javal marion, kerdelhue carole, lombaert eric, tsykun tetyana, prospero simone, roques alain, roux geraldine Figshare 2019 Microsatellites, dataset [(0, 0.010009417), (1, 0.010015825), (2, 0.010018505), (3, 0.010009823), (4, 0.010009417), (5, 0.010009417), (6, 0.010009825), (7, 0.010010399), (8, 0.010009417), (9, 0.9098979)]
cox christopher j 11037 Cox Christopher J 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
cram t. a. 10537 Cram T. A. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
cram thomas a. 10492 Cram Thomas A. 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
crepaldi paola 10272 Crepaldi Paola 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/159 lazzari barbara, frattini stefano, chessa stefania, talenti andrea, castiglioni bianca, marsan paolo, pagnacco giulio, williams john, stella alessandra Figshare 2018 Additional [(0, 0.016672082), (1, 0.016670983), (2, 0.016673623), (3, 0.6832785), (4, 0.016671475), (5, 0.016670097), (6, 0.18334706), (7, 0.01667465), (8, 0.016671354), (9, 0.016670162)]
crosse michael j. 11103 Crosse Michael J. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/521 p. broderick michael, j. anderson andrew, di liberto giovanni m., c. lalor edmund Dryad Digital Repository 2018 Natural, Speech, Dataset [(0, 0.006258076), (1, 0.20466216), (2, 0.006258722), (3, 0.3663062), (4, 0.0062574036), (5, 0.17043236), (6, 0.13698627), (7, 0.006257527), (8, 0.0903242), (9, 0.006257092)]
cruaud corinne 10051 Cruaud Corinne 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/31 couloux arnaud, wincker patrick, jean marc, noel benjamin, da silva corinne, lemainque arnaud, dutreux fabien', lapalu nicolas, linglin juliette, rouxel thierry, balesdent marie-helene Figshare 2018 Genomic, datasets [(0, 0.8874455), (1, 0.012505132), (2, 0.012504966), (3, 0.012509499), (4, 0.012504909), (5, 0.012505869), (6, 0.012506899), (7, 0.012505305), (8, 0.0125064375), (9, 0.012505492)]
cruz xavier de la 10019 Cruz Xavier De La 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/10 talavera david, orozco modesto Figshare 2011 training, testing [(0, 0.0018549295), (1, 0.4083764), (2, 0.13161956), (3, 0.0018543516), (4, 0.0018543502), (5, 0.0018544005), (6, 0.0018545777), (7, 0.0018546497), (8, 0.44702235), (9, 0.0018544622)]
cui wei 10904 Cui Wei 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/436 guo yuxin, chen chong, xie tong, meng haotian, jin xiaoye, zhu bofeng Dryad Digital Repository 2018 RAW_DATA [(0, 0.24413738), (1, 0.10899984), (2, 0.27884537), (3, 0.0019253815), (4, 0.35646468), (5, 0.001925676), (6, 0.0019252333), (7, 0.001925537), (8, 0.0019255829), (9, 0.0019253182)]
cultrera giovanna 10824 Cultrera Giovanna 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
curtarolo stefano 10821 Curtarolo Stefano https://www.aifb.kit.edu/web/DSKG/dataset/410 jong maarten de, chen wei, asta mark, persson kristin, angsten thomas, notestine randy, gamst anthony, sluiter marcel, chaitanya krishna ande, sybrand van der, plata jose j., toher cormac, ceder gerbrand Figshare 2018 Elastic, Tensor [(0, 0.0025006267), (1, 0.0025008286), (2, 0.0025004984), (3, 0.9774937), (4, 0.002500651), (5, 0.0025005413), (6, 0.0025006502), (7, 0.0025006433), (8, 0.0025011175), (9, 0.002500725)]
d'amico maria 10829 D’Amico Maria 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
d. barardo 11285 D. Barardo 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/2110 r. tacutu, e. johnson, e. diana, j. p. de magalhaes, g. lehmann, v. e. fraifeld, d. toren, j. wang, t. craig, a. budovsky, d. thornton 2018 AnAge [(0, 0.020003892), (1, 0.4200142), (2, 0.020003803), (3, 0.020003935), (4, 0.020003803), (5, 0.020003803), (6, 0.020003803), (7, 0.020003803), (8, 0.41995516), (9, 0.020003803)]
d. castillo karl 11026 D. Castillo Karl 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/488 rippe john p., v. matz mikhail, medina monica, khawaja nida z., h. pinzon c. jorge, w. davies sarah Dryad Digital Repository 2017 Microsatellite, genotype [(0, 0.0050014686), (1, 0.0050021126), (2, 0.25499824), (3, 0.0050017047), (4, 0.005001192), (5, 0.005001265), (6, 0.005001028), (7, 0.0050018337), (8, 0.7049896), (9, 0.0050015687)]
d. francis clinton 10125 D. Francis Clinton 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/81 Dryad Digital Repository 2015 phylogenies [(0, 0.0021298649), (1, 0.07373871), (2, 0.0021297862), (3, 0.0021299352), (4, 0.0021302481), (5, 0.0021296502), (6, 0.0021298921), (7, 0.85578555), (8, 0.055566203), (9, 0.0021301813)]
d. thornton 11296 D. Thornton 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/2110 d. barardo, r. tacutu, e. johnson, e. diana, j. p. de magalhaes, g. lehmann, v. e. fraifeld, d. toren, j. wang, t. craig, a. budovsky 2018 AnAge [(0, 0.020003892), (1, 0.4200142), (2, 0.020003803), (3, 0.020003935), (4, 0.020003803), (5, 0.020003803), (6, 0.020003803), (7, 0.020003803), (8, 0.41995516), (9, 0.020003803)]
d. toren 11292 D. Toren 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/2110 d. barardo, r. tacutu, e. johnson, e. diana, j. p. de magalhaes, g. lehmann, v. e. fraifeld, j. wang, t. craig, a. budovsky, d. thornton 2018 AnAge [(0, 0.020003892), (1, 0.4200142), (2, 0.020003803), (3, 0.020003935), (4, 0.020003803), (5, 0.020003803), (6, 0.020003803), (7, 0.020003803), (8, 0.41995516), (9, 0.020003803)]
da silva corinne 10052 Da Silva Corinne 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/31 couloux arnaud, wincker patrick, jean marc, noel benjamin, cruaud corinne, lemainque arnaud, dutreux fabien', lapalu nicolas, linglin juliette, rouxel thierry, balesdent marie-helene Figshare 2018 Genomic, datasets [(0, 0.8874455), (1, 0.012505132), (2, 0.012504966), (3, 0.012509499), (4, 0.012504909), (5, 0.012505869), (6, 0.012506899), (7, 0.012505305), (8, 0.0125064375), (9, 0.012505492)]
dan grahn 10020 Dan Grahn 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/15 VDiscovery [(0, 0.51622254), (1, 0.35020602), (2, 0.01669616), (3, 0.016694792), (4, 0.016700577), (5, 0.016697612), (6, 0.016694099), (7, 0.016694106), (8, 0.016696507), (9, 0.0166976)]
dan koehl 11297 Dan Koehl 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/2185 Dan Koehl Elephant, Encyclopedia [(0, 0.02500133), (1, 0.02500133), (2, 0.774988), (3, 0.02500133), (4, 0.02500133), (5, 0.02500133), (6, 0.02500133), (7, 0.02500133), (8, 0.02500133), (9, 0.02500133)]
daniel grijalva 10283 Daniel Grijalva https://www.aifb.kit.edu/web/DSKG/dataset/164 Movie, Industry [(0, 0.0012824624), (1, 0.0012827858), (2, 0.0012824651), (3, 0.0012826391), (4, 0.0012825431), (5, 0.9884563), (6, 0.0012825541), (7, 0.00128269), (8, 0.0012825913), (9, 0.0012829367)]
daniel grijalva 10464 Daniel Grijalva 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/244 Twitter, Threads [(0, 0.0007252219), (1, 0.00072538527), (2, 0.0007252665), (3, 0.0007251917), (4, 0.62399495), (5, 0.21115544), (6, 0.0007252574), (7, 0.00072527886), (8, 0.15977265), (9, 0.0007253194)]
daniel silion 10724 Daniel Silion 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/370 Indian, Diabetes [(0, 0.012500853), (1, 0.01250086), (2, 0.012500503), (3, 0.012500432), (4, 0.012500739), (5, 0.012500537), (6, 0.012500432), (7, 0.012500709), (8, 0.012500642), (9, 0.8874943)]
darryl roger lundy 11218 Darryl Roger Lundy 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/1427 Peerage [(0, 0.025007552), (1, 0.025008617), (2, 0.77492857), (3, 0.025008868), (4, 0.025007552), (5, 0.025007552), (6, 0.025008528), (7, 0.025007552), (8, 0.025007693), (9, 0.025007552)]
das samir 10321 Das Samir 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/194 madjar cecile, sengupta ayan, mohades zia 2016 LORIS:, DICOM, anonymizer [(0, 0.0014721883), (1, 0.001472288), (2, 0.50277686), (3, 0.001471915), (4, 0.0014721786), (5, 0.0014722317), (6, 0.052457307), (7, 0.001472282), (8, 0.4344605), (9, 0.0014722854)]
davi cunha 10671 Davi Cunha 192562407, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/339 loiselle steven, shupe scott, rocha luciana, riveros elsa valiente Figshare 2016 Data.xlsx [(0, 0.016682342), (1, 0.016683985), (2, 0.84985054), (3, 0.016677687), (4, 0.016691793), (5, 0.016677799), (6, 0.016687857), (7, 0.016688213), (8, 0.016678357), (9, 0.016681392)]
david c. 11241 David C. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/1952 anthony g., muhannad 2017 Leeds, Robotic, Commands [(0, 0.005265901), (1, 0.22510047), (2, 0.005265686), (3, 0.0052663367), (4, 0.066082515), (5, 0.0052658054), (6, 0.005265824), (7, 0.005265751), (8, 0.00526681), (9, 0.6719549)]
david shotton 11226 David Shotton 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/1663 timothy w. clark, paolo ciccarese 2018 FRBR-aligned, Bibliographic, Ontology [(0, 0.8999837), (1, 0.011112398), (2, 0.011111713), (3, 0.011111792), (4, 0.011111667), (5, 0.011115927), (6, 0.011113126), (7, 0.011113128), (8, 0.011113001), (9, 0.011113599)]
david shotton 11237 David Shotton 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/1884 2010 FRBR-aligned, Bibliographic, Ontology [(0, 0.80773944), (1, 0.010001503), (2, 0.11224735), (3, 0.010001179), (4, 0.010001066), (5, 0.0100012915), (6, 0.010002666), (7, 0.010001822), (8, 0.010001889), (9, 0.010001793)]
davies andrew 10090 Davies Andrew 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/54 mathies laura, surjyendu ray, lopez-alvillar kayla, arbeitman michelle Figshare 2019 Additional [(0, 0.3895015), (1, 0.0020431778), (2, 0.0020430647), (3, 0.0020425825), (4, 0.0020429618), (5, 0.0020425075), (6, 0.0020424363), (7, 0.5941563), (8, 0.0020427254), (9, 0.0020426905)]
davies andrew 11093 Davies Andrew 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/517 mathies laura, surjyendu ray, lopez-alvillar kayla, arbeitman michelle Figshare 2019 Additional [(0, 0.18354425), (1, 0.0032281477), (2, 0.52929646), (3, 0.0032277578), (4, 0.13443571), (5, 0.0032277743), (6, 0.0032274346), (7, 0.13335569), (8, 0.0032284725), (9, 0.0032282593)]
davis matt 10034 Davis Matt 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/21 Dryad Digital Repository 2017 Appendix [(0, 0.7163069), (1, 0.26316014), (2, 0.0025667457), (3, 0.002566154), (4, 0.0025662382), (5, 0.002566508), (6, 0.0025663632), (7, 0.0025670053), (8, 0.002566654), (9, 0.0025672342)]
de chiara gabriele 10520 De Chiara Gabriele 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/267 ferraro alessandro 2018 Reconciliation, quantum, local, master, equations, thermodynamics [(0, 0.0071471925), (1, 0.007149139), (2, 0.0071474668), (3, 0.93566865), (4, 0.007147415), (5, 0.007147732), (6, 0.007147036), (7, 0.00714787), (8, 0.0071499017), (9, 0.007147594)]
de falco giovanni 10799 De Falco Giovanni 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/403 conforti alessandro, simeone simone, carrara paola, lanucara simone PANGAEA - Data Publisher for Earth & Environmental Science 2018 Submerged, deposits, Western, Sardinia,, Mediterranean, organised, interoperable, Spatial, Infrastructure,, supplement, Brambilla,, Walter;, Conforti,, Alessandro;, Simeone,, Simone;, Carrara,, Paola;, Lanucara,, Simone;, Falco,, Giovanni, (2019):, submerged, deposits, organised, interoperable, spatial, infrastructure, (Western, Sardinia,, Mediterranean, Sea)., Earth, System, Science, Data,, 11(2),, 515-527 [(0, 0.0007885664), (1, 0.52333206), (2, 0.011065678), (3, 0.008872817), (4, 0.00078854547), (5, 0.0007885023), (6, 0.0007885604), (7, 0.14595369), (8, 0.22973014), (9, 0.07789147)]
de yuan hong 11209 De Yuan Hong 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/1067 peter h. raven, wu zhengyi Flora, China [(0, 0.54998887), (1, 0.050001763), (2, 0.05000014), (3, 0.05000801), (4, 0.050000507), (5, 0.05000014), (6, 0.05000014), (7, 0.05000014), (8, 0.05000014), (9, 0.05000014)]
deepak gupta 10439 Deepak Gupta 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/237 USArrests [(0, 0.0027814195), (1, 0.46177936), (2, 0.0027819274), (3, 0.002781316), (4, 0.0027814007), (5, 0.0027813453), (6, 0.0027813336), (7, 0.24273819), (8, 0.002782807), (9, 0.27601087)]
dekel gil 10915 Dekel Gil 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/442 froehlich caroline 2016 Generating, music, resting-state [(0, 0.0013521106), (1, 0.0013520545), (2, 0.0013522317), (3, 0.0013522388), (4, 0.001351999), (5, 0.0013520344), (6, 0.0013521974), (7, 0.0013524091), (8, 0.0013523768), (9, 0.98783034)]
del hoyo 11202 del Hoyo 95457728, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/841 elliott, a. Handbook, Birds, World [(0, 0.5798452), (1, 0.2600107), (2, 0.020014448), (3, 0.020015268), (4, 0.020012176), (5, 0.020012915), (6, 0.020011598), (7, 0.020037252), (8, 0.0200168), (9, 0.020023668)]
denn fred m 11045 Denn Fred M 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
denny vrandecic 11222 Denny Vrandečić 41008148, 127413603, 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/1650 markus krotzsch Semantic, Vocabulary, Terminology [(0, 0.36284164), (1, 0.014291412), (2, 0.014287564), (3, 0.014287826), (4, 0.014287564), (5, 0.014287564), (6, 0.5228516), (7, 0.014288527), (8, 0.014287857), (9, 0.01428848)]
derczynski leon 10092 Derczynski Leon 41008148, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/55 lozhnikov nikita, mazzara manuel Figshare 2018 RuStance [(0, 0.8999395), (1, 0.011118147), (2, 0.01111729), (3, 0.011117178), (4, 0.01111739), (5, 0.011119539), (6, 0.011117412), (7, 0.011117053), (8, 0.011118132), (9, 0.011118432)]
derczynski leon 10450 Derczynski Leon 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/242 zubiaga arkaitz, kochkina elena, gorrell genevieve, aker ahmet, bontcheva kalina, liakata maria Figshare 2019 RumourEval [(0, 0.0034522405), (1, 0.0034517262), (2, 0.0034515297), (3, 0.0034516058), (4, 0.63409746), (5, 0.0034525406), (6, 0.19449508), (7, 0.0034517439), (8, 0.14724432), (9, 0.00345177)]
devlin bernie 10430 Devlin Bernie 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
dhruv alexander 10596 dhruv alexander 33923547 https://www.aifb.kit.edu/web/DSKG/dataset/293 Codes [(0, 0.0050045676), (1, 0.0050052623), (2, 0.0050038774), (3, 0.0050036893), (4, 0.39048752), (5, 0.0050043636), (6, 0.0050047655), (7, 0.38963634), (8, 0.0050053084), (9, 0.18484429)]
di liberto giovanni m. 11102 Di Liberto Giovanni M. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/521 p. broderick michael, j. anderson andrew, crosse michael j., c. lalor edmund Dryad Digital Repository 2018 Natural, Speech, Dataset [(0, 0.006258076), (1, 0.20466216), (2, 0.006258722), (3, 0.3663062), (4, 0.0062574036), (5, 0.17043236), (6, 0.13698627), (7, 0.006257527), (8, 0.0903242), (9, 0.006257092)]
diago maria p. 10004 Diago Maria P. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/5 Figshare 2018 datasets.zip [(0, 0.0027813115), (1, 0.0027812147), (2, 0.10478164), (3, 0.0027808074), (4, 0.0027811048), (5, 0.0027809243), (6, 0.0027808365), (7, 0.49617338), (8, 0.3795769), (9, 0.0027818966)]
diaz diego 10754 Díaz Diego 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/388 napolitano constanza, sanderson jim, e. johnson warren, ritland kermit Dryad Digital Repository 2015 Mitochondrial, sequences [(0, 0.21765882), (1, 0.0040049045), (2, 0.33959502), (3, 0.0040048095), (4, 0.41471362), (5, 0.0040042032), (6, 0.004004108), (7, 0.004004782), (8, 0.004005344), (9, 0.004004384)]
dintwe one b. 10899 Dintwe One B. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/435 rodo miguel, rozot virginie, hatherill mark, nemes elisa Figshare 2019 Megapool [(0, 0.0038491406), (1, 0.0038491774), (2, 0.9653577), (3, 0.0038484617), (4, 0.0038499017), (5, 0.0038489315), (6, 0.003849372), (7, 0.003848817), (8, 0.0038493455), (9, 0.0038491841)]
dixie newsome 10073 Dixie Newsome 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/44 Cycling, Metrics [(0, 0.011118551), (1, 0.011120088), (2, 0.011117573), (3, 0.89992726), (4, 0.011117573), (5, 0.011117575), (6, 0.011117573), (7, 0.011121337), (8, 0.011119951), (9, 0.011122545)]
dow julian 10780 Dow Julian 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/395 wang jing, kean laura, jingli yang, allan adrian k, shireen a, herzyk pawel Figshare 2011 phenotype [(0, 0.93111986), (1, 0.0033351902), (2, 0.04220043), (3, 0.0033347197), (4, 0.0033348387), (5, 0.0033347732), (6, 0.0033351888), (7, 0.0033348722), (8, 0.0033352363), (9, 0.003334876)]
drakopoulos michael 10352 Drakopoulos Michael https://www.aifb.kit.edu/web/DSKG/dataset/202 nghia t., robert c. Figshare 2018 Visualization [(0, 0.011115753), (1, 0.011116267), (2, 0.011116247), (3, 0.011115246), (4, 0.011115288), (5, 0.80073434), (6, 0.011117472), (7, 0.011117259), (8, 0.11033636), (9, 0.011115719)]
drakopoulos michael 10745 Drakopoulos Michael 41008148, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/384 nghia t., robert c. Figshare 2018 Visualization [(0, 0.01000219), (1, 0.010003662), (2, 0.010003846), (3, 0.010003299), (4, 0.01000222), (5, 0.9099709), (6, 0.010003116), (7, 0.01000481), (8, 0.010003411), (9, 0.010002528)]
drakopoulos michael 10994 Drakopoulos Michael 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/477 nghia t., robert c. Figshare 2018 Visualization [(0, 0.01003375), (1, 0.010034938), (2, 0.010034305), (3, 0.010035033), (4, 0.0100337835), (5, 0.7986364), (6, 0.010034821), (7, 0.010035625), (8, 0.12108741), (9, 0.010033935)]
driemel amelie 11036 Driemel Amelie 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
du jinkun 10731 Du Jinkun 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/379 yang hua, liu xinye, xin mingming, hu zhaorong, peng huiru, rossi vincenzo, sun qixin, ni zhongfu, yao yingyin Dryad Digital Repository 2016 Supplemental, Dataset [(0, 0.87141), (1, 0.0142872), (2, 0.014290962), (3, 0.014288103), (4, 0.014287115), (5, 0.014287165), (6, 0.014287392), (7, 0.014287283), (8, 0.014287304), (9, 0.014287489)]
du yuanbao 10985 Du Yuanbao 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/473 wen zhixin, quan qing, xia lin, ge deyan, yang qisen Dryad Digital Repository 2016 Small, mammal, dataset [(0, 0.003851026), (1, 0.71095574), (2, 0.25824106), (3, 0.0038512235), (4, 0.0038500305), (5, 0.0038500158), (6, 0.0038501853), (7, 0.0038499627), (8, 0.0038505355), (9, 0.0038502412)]
ducharne agnes 10639 Ducharne Agnès 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/314 tootchi ardalan, jost anne PANGAEA - Data Publisher for Earth & Environmental Science 2018 Multi-source, global, wetland, combining, surface, water, imagery, groundwater, constraints [(0, 0.00056529377), (1, 0.0005653265), (2, 0.0005653056), (3, 0.0005652512), (4, 0.00056526874), (5, 0.000565264), (6, 0.018347021), (7, 0.9771306), (8, 0.00056537084), (9, 0.00056529103)]
dudek katarzyna 10601 Dudek Katarzyna 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/296 zielinski piotr, brzyska krystyna, babik wieslaw Dryad Digital Repository 2016 dataset [(0, 0.008337993), (1, 0.008339686), (2, 0.83854425), (3, 0.008336685), (4, 0.09474639), (5, 0.008336769), (6, 0.008337153), (7, 0.008340801), (8, 0.00834294), (9, 0.008337306)]
dumas patrice 10385 Dumas Patrice https://www.aifb.kit.edu/web/DSKG/dataset/224 wirsenius stefan, beringer tim, searchinger tim d PANGAEA - Data Publisher for Earth & Environmental Science 2018 calculations,, supplement, Searchinger,, Wirsenius,, Stefan;, Beringer,, Dumas,, Patrice, (2018):, Assessing, efficiency, changes, mitigating, climate, change., Nature,, 564(7735),, 249-253 [(0, 0.0009094369), (1, 0.0009095744), (2, 0.0009093671), (3, 0.00090934784), (4, 0.0009094097), (5, 0.00090944185), (6, 0.9918148), (7, 0.00090961665), (8, 0.0009095609), (9, 0.00090942584)]
dun hongchao 11161 Dun Hongchao 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/562 Figshare 2019 figures [(0, 0.0027795976), (1, 0.1839878), (2, 0.0027795953), (3, 0.002779473), (4, 0.0027795157), (5, 0.0027798058), (6, 0.0027803234), (7, 0.7937745), (8, 0.0027798407), (9, 0.0027796393)]
duprat thierry 11046 Duprat Thierry 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
dupuis julian 10325 Dupuis Julian 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/195 peigler richard, geib scott Dryad Digital Repository 2018 population, genetic, dataset [(0, 0.0058836117), (1, 0.0058837133), (2, 0.94704825), (3, 0.005884327), (4, 0.0058832876), (5, 0.0058832783), (6, 0.0058832257), (7, 0.005883502), (8, 0.0058834194), (9, 0.0058833356)]
dutreux fabien' 10054 Dutreux Fabien' 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/31 couloux arnaud, wincker patrick, jean marc, noel benjamin, cruaud corinne, da silva corinne, lemainque arnaud, lapalu nicolas, linglin juliette, rouxel thierry, balesdent marie-helene Figshare 2018 Genomic, datasets [(0, 0.8874455), (1, 0.012505132), (2, 0.012504966), (3, 0.012509499), (4, 0.012504909), (5, 0.012505869), (6, 0.012506899), (7, 0.012505305), (8, 0.0125064375), (9, 0.012505492)]
dutton ellsworth g 11047 Dutton Ellsworth G 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
dvorak petr 10783 Dvorak Petr 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/397 Figshare 2019 Dataset [(0, 0.00500294), (1, 0.0050031208), (2, 0.00500377), (3, 0.0050036237), (4, 0.15505019), (5, 0.0050054304), (6, 0.80492043), (7, 0.005002915), (8, 0.0050045694), (9, 0.005002948)]
dworkin ian 10146 Dworkin Ian https://www.aifb.kit.edu/web/DSKG/dataset/87 charbonneau amanda, tack david, lale allison, goldston josh, caple mackenzie, conner emma, barazani oz, ziffer-berger jotham, conner jeff Dryad Digital Repository 2018 [(0, 0.06347562), (1, 0.0052664205), (2, 0.44835892), (3, 0.005266149), (4, 0.0052664382), (5, 0.0052660224), (6, 0.005265994), (7, 0.451302), (8, 0.005266528), (9, 0.005265935)]
e. diana 11288 E. Diana 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/2110 d. barardo, r. tacutu, e. johnson, j. p. de magalhaes, g. lehmann, v. e. fraifeld, d. toren, j. wang, t. craig, a. budovsky, d. thornton 2018 AnAge [(0, 0.020003892), (1, 0.4200142), (2, 0.020003803), (3, 0.020003935), (4, 0.020003803), (5, 0.020003803), (6, 0.020003803), (7, 0.020003803), (8, 0.41995516), (9, 0.020003803)]
e. johnson 11287 E. Johnson 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/2110 d. barardo, r. tacutu, e. diana, j. p. de magalhaes, g. lehmann, v. e. fraifeld, d. toren, j. wang, t. craig, a. budovsky, d. thornton 2018 AnAge [(0, 0.020003892), (1, 0.4200142), (2, 0.020003803), (3, 0.020003935), (4, 0.020003803), (5, 0.020003803), (6, 0.020003803), (7, 0.020003803), (8, 0.41995516), (9, 0.020003803)]
e. johnson warren 10756 E. Johnson Warren 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/388 napolitano constanza, diaz diego, sanderson jim, ritland kermit Dryad Digital Repository 2015 Mitochondrial, sequences [(0, 0.21765882), (1, 0.0040049045), (2, 0.33959502), (3, 0.0040048095), (4, 0.41471362), (5, 0.0040042032), (6, 0.004004108), (7, 0.004004782), (8, 0.004005344), (9, 0.004004384)]
eaves joanne 10134 Eaves Joanne 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/85 attridge nina, gilmore camilla Figshare 2019 Study, stimuli [(0, 0.0012346947), (1, 0.0012347773), (2, 0.9888875), (3, 0.0012347024), (4, 0.0012347177), (5, 0.0012346945), (6, 0.001234698), (7, 0.0012347726), (8, 0.0012347733), (9, 0.0012347109)]
eaves joanne 10583 Eaves Joanne 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/289 attridge nina, gilmore camilla Figshare 2019 Study [(0, 0.0012196369), (1, 0.0012197181), (2, 0.9890229), (3, 0.0012196446), (4, 0.0012196634), (5, 0.0012196366), (6, 0.0012196461), (7, 0.0012197149), (8, 0.0012197134), (9, 0.0012196539)]
eaves joanne 10681 Eaves Joanne 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/349 attridge nina, gilmore camilla Figshare 2019 Study [(0, 0.001219637), (1, 0.0012197177), (2, 0.9890229), (3, 0.0012196447), (4, 0.0012196635), (5, 0.0012196368), (6, 0.0012196462), (7, 0.001219715), (8, 0.0012197184), (9, 0.001219654)]
eaves joanne 11182 Eaves Joanne 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/581 attridge nina, gilmore camilla Figshare 2019 Study [(0, 0.0012196369), (1, 0.0012197172), (2, 0.9890229), (3, 0.0012196446), (4, 0.0012196634), (5, 0.0012196366), (6, 0.0012196461), (7, 0.0012197149), (8, 0.0012197131), (9, 0.0012196539)]
eche camille 10944 Eché Camille 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/453 cogne yannick, pible olivier, gouveia duarte, francois adeline, bouchez olivier, ford alex, geffard olivier, armengaud jean, chaumot arnaud, almunia christine figshare 2019 Metadata, record, transcriptomes, gammarid, individuals, proteogenomic, analysis, seven, taxonomic, groups [(0, 0.0050043194), (1, 0.0050041666), (2, 0.0050037466), (3, 0.005003414), (4, 0.0050031887), (5, 0.0050032004), (6, 0.0050044227), (7, 0.0050036465), (8, 0.95496607), (9, 0.0050038155)]
eck anat 10631 Eck Anat https://www.aifb.kit.edu/web/DSKG/dataset/312 Figshare 2016 M3500 [(0, 0.004349371), (1, 0.004351099), (2, 0.091491565), (3, 0.0043495162), (4, 0.004348894), (5, 0.0043489947), (6, 0.004348834), (7, 0.004349154), (8, 0.8737134), (9, 0.004349186)]
eck anat 11081 Eck Anat 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/513 Figshare 2016 A3130 [(0, 0.004001146), (1, 0.0040019355), (2, 0.03591674), (3, 0.0040012854), (4, 0.0040009273), (5, 0.00400109), (6, 0.0040009557), (7, 0.0040016156), (8, 0.932073), (9, 0.0040012677)]
edmund weiner 11192 Edmund Weiner 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/608 john simpson, james murray Oxford University Press 1989 Oxford, English, Dictionary [(0, 0.03333354), (1, 0.033333898), (2, 0.03333354), (3, 0.03333354), (4, 0.6999975), (5, 0.033333864), (6, 0.03333354), (7, 0.03333354), (8, 0.03333354), (9, 0.03333354)]
edward baker 10805 Edward Baker 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/405 Wikipedia, Edits [(0, 0.0012351458), (1, 0.9888822), (2, 0.0012352637), (3, 0.0012354573), (4, 0.0012352439), (5, 0.0012352696), (6, 0.0012351654), (7, 0.0012353703), (8, 0.0012355587), (9, 0.0012352879)]
ehrnthaller christian 11179 Ehrnthaller Christian 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/577 Figshare 2016 draft [(0, 0.050011795), (1, 0.050002437), (2, 0.54997164), (3, 0.05000168), (4, 0.05000168), (5, 0.05000168), (6, 0.05000168), (7, 0.050003055), (8, 0.050002627), (9, 0.05000168)]
ekaterina gasparian 10703 Ekaterina Gasparian 95457728, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/356 train6 [(0, 0.025014237), (1, 0.025014237), (2, 0.025014237), (3, 0.025018023), (4, 0.025016142), (5, 0.025014503), (6, 0.025014237), (7, 0.77486247), (8, 0.025015654), (9, 0.02501623)]
ekman jan 10576 Ekman Jan 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/277 griesser michael, wagner gretchen f., m. drobniak szymon Dryad Digital Repository 2017 female, survival [(0, 0.0038504086), (1, 0.003850529), (2, 0.19672926), (3, 0.0038500207), (4, 0.04689146), (5, 0.003849987), (6, 0.0038509804), (7, 0.0038510857), (8, 0.0038501914), (9, 0.7294261)]
elaine howard ecklund 11270 Elaine Howard Ecklund 17744445, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2054 2005 Religion, among, Academic, Scientists [(0, 0.025002792), (1, 0.025002792), (2, 0.02500356), (3, 0.025002792), (4, 0.525025), (5, 0.025004845), (6, 0.025002792), (7, 0.27494884), (8, 0.025002792), (9, 0.025003748)]
elgendi mohamed 10798 Elgendi Mohamed https://www.aifb.kit.edu/web/DSKG/dataset/402 yongbo liang, guiyong liu, zhencheng chen Figshare 2017 PPG-BP, Database [(0, 0.120626606), (1, 0.29593638), (2, 0.45990443), (3, 0.0014942605), (4, 0.0014938889), (5, 0.001493661), (6, 0.0014937703), (7, 0.0014938915), (8, 0.11456882), (9, 0.0014942489)]
elizabeth hawley 11221 Elizabeth Hawley 95457728, 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/1603 American Alpine Club 2004 Himalayan, Database [(0, 0.1), (1, 0.1), (2, 0.1), (3, 0.1), (4, 0.1), (5, 0.1), (6, 0.1), (7, 0.1), (8, 0.1), (9, 0.1)]
elliott 11201 Elliott 95457728, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/841 del hoyo, a. Handbook, Birds, World [(0, 0.5798452), (1, 0.2600107), (2, 0.020014448), (3, 0.020015268), (4, 0.020012176), (5, 0.020012915), (6, 0.020011598), (7, 0.020037252), (8, 0.0200168), (9, 0.020023668)]
eric liu 11279 Eric Liu 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2056 lu yengfang, carson mencken, byron johnson, rodney stark, anna sun, chiu heu-yuan, fenggang yangf, victor yuan 2007 Spiritual, Study, Chinese, Residents [(0, 0.020010915), (1, 0.21982822), (2, 0.02002011), (3, 0.020011319), (4, 0.02001927), (5, 0.02001087), (6, 0.020023542), (7, 0.020014815), (8, 0.6200476), (9, 0.020013252)]
eric plutzer 11267 Eric Plutzer 86803240, 17744445 https://www.aifb.kit.edu/web/DSKG/dataset/2049 michael b. berkman 2007 National, Survey, School, Biology, Teachers [(0, 0.025009433), (1, 0.7749374), (2, 0.02500641), (3, 0.025013493), (4, 0.025005233), (5, 0.025005233), (6, 0.02500608), (7, 0.025005233), (8, 0.025006244), (9, 0.025005233)]
erik 11229 Erik 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/1873 sebastien, kouwenhoven, vincent, k., kun, frolov, plissard, zuo Research Data, 4TU.Centre 2012 Signatures, Majorana, fermions, hybrid, superconductor-semiconductor, nanowire, devices [(0, 0.020003892), (1, 0.020003892), (2, 0.020003892), (3, 0.020003892), (4, 0.020003892), (5, 0.020003892), (6, 0.81996495), (7, 0.020003892), (8, 0.020003892), (9, 0.020003892)]
erp jan b.f. van 10366 Erp Jan B.F. Van 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/214 toet alexander, boertjes erik m., buuren stef van Figshare 2016 draft [(0, 0.0058848374), (1, 0.13605708), (2, 0.0058861887), (3, 0.0058875135), (4, 0.005885186), (5, 0.005884874), (6, 0.0058856793), (7, 0.005886113), (8, 0.81685746), (9, 0.0058851438)]
eugene f 11174 Eugene F 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/574 partridge linda, thornton janet m Figshare 2011 [(0, 0.6548074), (1, 0.057739757), (2, 0.0016137784), (3, 0.001613757), (4, 0.0016138017), (5, 0.0016137623), (6, 0.12236712), (7, 0.0016141419), (8, 0.1554026), (9, 0.0016138868)]
eus 11029 Eus 86803240, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/490 Figshare 2019 [(0, 0.0035742181), (1, 0.0035743334), (2, 0.003573884), (3, 0.0035736407), (4, 0.003574245), (5, 0.003573724), (6, 0.0035736402), (7, 0.41604802), (8, 0.003574508), (9, 0.5553598)]
faccenda manuele 10194 Faccenda Manuele 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/117 figshare 2019 Model, output [(0, 0.009099167), (1, 0.009102702), (2, 0.009097593), (3, 0.009099016), (4, 0.009097886), (5, 0.009097926), (6, 0.009097817), (7, 0.009100909), (8, 0.9181085), (9, 0.009098486)]
fait aaron 10720 Fait Aaron 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/363 nevo noa, toubiana david, samani talya, batushansky albert, sikron noga, saranga yehoshua Figshare 2016 Additional, Table [(0, 0.0033348186), (1, 0.003336347), (2, 0.1180632), (3, 0.8552586), (4, 0.003334381), (5, 0.0033344324), (6, 0.0033343637), (7, 0.0033347586), (8, 0.0033346822), (9, 0.0033344477)]
famiani daniela 10835 Famiani Daniela 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
fano elisa-anna 10133 Fano Elisa-Anna 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/82 aschonitis vassilis g, mastrocicco micol, ghirardini andrea, papamichail dimitris, kleoniki, colombani nicolo, castaldelli giuseppe PANGAEA - Data Publisher for Earth & Environmental Science 2017 resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation,, links, ESRI-grid, files,, supplement, Aschonitis,, Vassilis, Papamichail,, Dimitris;, Demertzi,, Kleoniki;, Colombani,, Nicolo;, Mastrocicco,, Micol;, Ghirardini,, Andrea;, Castaldelli,, Giuseppe;, Fano,, Elisa-Anna, (2017):, High-resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation., Earth, System, Science, Data,, 9(2),, 615-638 [(0, 0.0005132323), (1, 0.0005132701), (2, 0.00051321497), (3, 0.00051319704), (4, 0.00051321386), (5, 0.0005132613), (6, 0.028460743), (7, 0.2619134), (8, 0.6910191), (9, 0.015527402)]
faramarzi monireh 10790 Faramarzi Monireh 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/399 masud mohammad badrul, mcallister tim, lelyk glenn, krobel roland, legesse getahun PANGAEA - Data Publisher for Earth & Environmental Science 2017 Deriving, Canada-wide, soils, dataset, Water, Assessment, (SWAT),, supplement, Cordeiro,, Marcos, Lelyk,, Glenn;, Kröbel,, Roland;, Legesse,, Getahun;, Faramarzi,, Monireh;, Masud,, Mohammad, Badrul;, McAllister,, (2018):, Deriving, dataset, agriculturally, relevant, soils, Landscapes, Canada, (SLC), database, Water, Assessment, (SWAT), simulations., Earth, System, Science, Data,, 10(3),, 1673-1686 [(0, 0.002084727), (1, 0.0020848836), (2, 0.0020844473), (3, 0.0020843572), (4, 0.30710477), (5, 0.0020848878), (6, 0.0020846366), (7, 0.22581027), (8, 0.4524925), (9, 0.0020845437)]
feiyang ma 10105 Feiyang Ma 86803240, 41008148, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/69 Figshare 2019 ACTINN [(0, 0.69217473), (1, 0.011116281), (2, 0.21890855), (3, 0.011113556), (4, 0.011113563), (5, 0.011113606), (6, 0.011113335), (7, 0.011114985), (8, 0.011116188), (9, 0.011115248)]
felicetta chiara 10836 Felicetta Chiara 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
fenenga christine j. 10766 Fenenga Christine J. 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/390 legese mekuria, tobias fr de wit, spieker nicole, koech ramona, nyarango robert, ndwiga stanley figshare 2019 Analyzing, digital, healthcare, exchange, platform, surveillance, antibiotic, prescriptions, primary, urban, Kenya:, mixed-methods, study [(0, 0.0090974895), (1, 0.009099293), (2, 0.009098916), (3, 0.009097519), (4, 0.009104664), (5, 0.009097751), (6, 0.009100963), (7, 0.9181042), (8, 0.009101116), (9, 0.009098127)]
feng 10399 Feng 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/227 buer jan, zeng an-ping Figshare 2011 Shifted, cumulative, regulation [(0, 0.70934176), (1, 0.002002305), (2, 0.0020024974), (3, 0.0020017226), (4, 0.0020020579), (5, 0.0020016932), (6, 0.0020017282), (7, 0.27464175), (8, 0.002002669), (9, 0.0020018462)]
fenggang yangf 11282 Fenggang Yangf 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2056 lu yengfang, carson mencken, byron johnson, rodney stark, eric liu, anna sun, chiu heu-yuan, victor yuan 2007 Spiritual, Study, Chinese, Residents [(0, 0.020010915), (1, 0.21982822), (2, 0.02002011), (3, 0.020011319), (4, 0.02001927), (5, 0.02001087), (6, 0.020023542), (7, 0.020014815), (8, 0.6200476), (9, 0.020013252)]
fernando allan gil s. 10937 Fernando Allan Gil S. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/452 yasuhara moriaki, iwatani hokuto, hunt gene, okahashi hisayo, kase tomoki, hayashi hiroki, irizuki toshiaki, yolanda m., renema willem Dryad Digital Repository 2016 Modern, dataset [(0, 0.006672621), (1, 0.0066716587), (2, 0.0066717216), (3, 0.0066711693), (4, 0.93995297), (5, 0.0066711684), (6, 0.0066711684), (7, 0.0066744406), (8, 0.0066717444), (9, 0.0066713416)]
fernando fernandez 10314 Fernando Fernandez 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/190 Office, Supply, Sales [(0, 0.0077038296), (1, 0.007704962), (2, 0.0077042226), (3, 0.007703512), (4, 0.0077081323), (5, 0.10892559), (6, 0.007704603), (7, 0.43550387), (8, 0.3301436), (9, 0.07919766)]
ferraro alessandro 10521 Ferraro Alessandro 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/267 de chiara gabriele 2018 Reconciliation, quantum, local, master, equations, thermodynamics [(0, 0.0071471925), (1, 0.007149139), (2, 0.0071474668), (3, 0.93566865), (4, 0.007147415), (5, 0.007147732), (6, 0.007147036), (7, 0.00714787), (8, 0.0071499017), (9, 0.007147594)]
fichter andreas 10188 Fichter Andreas 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/115 mucke thomas, ritschl lucas, humbs martin, luppa peter, wolff klaus-dietrich Dryad Digital Repository 2016 Minimal, dataset [(0, 0.0027062823), (1, 0.3120456), (2, 0.0027061522), (3, 0.002705297), (4, 0.0027060604), (5, 0.002705573), (6, 0.66630715), (7, 0.002706259), (8, 0.002705882), (9, 0.0027057636)]
finkensieper stephan 10025 Finkensieper Stephan 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/18 stengel martin, fuchs petra, werscheck martin, van zadelhoff gerd-jan, benas nikolaos CM 2016 CLAAS-2:, CLoud, property, dAtAset, using, SEVIRI, Edition [(0, 0.0007817478), (1, 0.0007818785), (2, 0.0007817986), (3, 0.0007817648), (4, 0.0007817705), (5, 0.0007819013), (6, 0.0007818739), (7, 0.7842217), (8, 0.20952374), (9, 0.0007817838)]
fitzgerald kylie 10151 Fitzgerald Kylie 15744967, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/89 vaughan brett, fleischmann michael Figshare 2018 Understanding [(0, 0.011115803), (1, 0.011122435), (2, 0.011116043), (3, 0.011115593), (4, 0.011115984), (5, 0.011116176), (6, 0.011115593), (7, 0.011115669), (8, 0.8999507), (9, 0.011115968)]
fleischmann michael 10152 Fleischmann Michael 15744967, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/89 vaughan brett, fitzgerald kylie Figshare 2018 Understanding [(0, 0.011115803), (1, 0.011122435), (2, 0.011116043), (3, 0.011115593), (4, 0.011115984), (5, 0.011116176), (6, 0.011115593), (7, 0.011115669), (8, 0.8999507), (9, 0.011115968)]
flesch elizabeth 10996 Flesch Elizabeth 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/479 rotella jay, thomson jennifer, graves tabitha, garrott robert Figshare 2018 Simulation, dataset [(0, 0.9307326), (1, 0.007697601), (2, 0.007695642), (3, 0.007695541), (4, 0.007696259), (5, 0.0076958183), (6, 0.0076964074), (7, 0.0076963184), (8, 0.0076982155), (9, 0.0076955752)]
florea raluca 10297 Florea Raluca 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/171 stray viktoria Figshare 2019 Spearman, correlation, coefficient, matrix [(0, 0.003847172), (1, 0.0038475434), (2, 0.9653721), (3, 0.0038471913), (4, 0.0038471962), (5, 0.003847344), (6, 0.003847324), (7, 0.0038483108), (8, 0.0038483734), (9, 0.003847432)]
florea raluca 10312 Florea Raluca 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/187 stray viktoria Figshare 2019 Spearman, correlation, coefficient, analysis [(0, 0.003847172), (1, 0.0038475434), (2, 0.9653724), (3, 0.0038471913), (4, 0.0038471962), (5, 0.003847344), (6, 0.003847324), (7, 0.0038483106), (8, 0.003848071), (9, 0.003847432)]
folini doris 10869 Folini Doris 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/416 schwarz matthias, wild martin, ohmura atsumu, schar christoph, muller guido, hakuba maria z, lorenzo arturo PANGAEA - Data Publisher for Earth & Environmental Science 2017 Global, Energy, Balance, Archive, (GEBA), version, 2017:, database, worldwide, measured, surface, energy, fluxes., database, files,, supplement, Wild,, Martin;, Ohmura,, Atsumu;, Schär,, Christoph;, Müller,, Guido;, Folini,, Doris;, Schwarz,, Matthias;, Hakuba,, Maria, Sanchez-Lorenzo,, Arturo, (2017):, Global, Energy, Balance, Archive, (GEBA), version, 2017:, database, worldwide, measured, surface, energy, fluxes., Earth, System, Science, Data,, 9(2),, 601-613 [(0, 0.08709674), (1, 0.0008006429), (2, 0.00080067), (3, 0.00080083293), (4, 0.00080070284), (5, 0.092057034), (6, 0.00080055185), (7, 0.28708142), (8, 0.52896065), (9, 0.00080073724)]
fonseca andres 10066 Fonseca Andres 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/36 hernan sanabria Figshare 2017 dataset [(0, 0.009094183), (1, 0.009095392), (2, 0.009097402), (3, 0.009095439), (4, 0.009094108), (5, 0.009095616), (6, 0.630859), (7, 0.009094434), (8, 0.009097301), (9, 0.2963771)]
fonseca andres 10677 Fonseca Andres 41008148, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/341 hernan sanabria Figshare 2017 Histogram, Inputs [(0, 0.020015916), (1, 0.020018144), (2, 0.020026313), (3, 0.020019934), (4, 0.02001593), (5, 0.53204685), (6, 0.020018253), (7, 0.020035753), (8, 0.020024678), (9, 0.3077782)]
ford alex 10945 Ford Alex 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/453 cogne yannick, pible olivier, gouveia duarte, francois adeline, bouchez olivier, eche camille, geffard olivier, armengaud jean, chaumot arnaud, almunia christine figshare 2019 Metadata, record, transcriptomes, gammarid, individuals, proteogenomic, analysis, seven, taxonomic, groups [(0, 0.0050043194), (1, 0.0050041666), (2, 0.0050037466), (3, 0.005003414), (4, 0.0050031887), (5, 0.0050032004), (6, 0.0050044227), (7, 0.0050036465), (8, 0.95496607), (9, 0.0050038155)]
fortelli alberto 11086 Fortelli Alberto 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/516 matano fabio, sacchi marco PANGAEA - Data Publisher for Earth & Environmental Science 2019 Continuous, meteorological, monitoring, Posillipo, (Denza, Institute, weather, station, Naples, Campania, Region, Italy), during, period, January, December [(0, 0.0018535296), (1, 0.0018537701), (2, 0.13331537), (3, 0.0018532997), (4, 0.001853506), (5, 0.21196008), (6, 0.0018534109), (7, 0.13892013), (8, 0.0018540466), (9, 0.50468284)]
franceschina gianlorenzo 10837 Franceschina Gianlorenzo 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
franco roberto de 10850 Franco Roberto De 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
francois adeline 10942 François Adeline 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/453 cogne yannick, pible olivier, gouveia duarte, bouchez olivier, eche camille, ford alex, geffard olivier, armengaud jean, chaumot arnaud, almunia christine figshare 2019 Metadata, record, transcriptomes, gammarid, individuals, proteogenomic, analysis, seven, taxonomic, groups [(0, 0.0050043194), (1, 0.0050041666), (2, 0.0050037466), (3, 0.005003414), (4, 0.0050031887), (5, 0.0050032004), (6, 0.0050044227), (7, 0.0050036465), (8, 0.95496607), (9, 0.0050038155)]
frank oliver 10174 Frank Oliver 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/106 lombardot thierry, kottmann renzo, pfeffer hauke, richter michael, teeling hanno Figshare 2011 Genomes, Mapserver [(0, 0.728574), (1, 0.0032283089), (2, 0.0032278574), (3, 0.0032276625), (4, 0.003227962), (5, 0.0032298383), (6, 0.0032279433), (7, 0.0032280644), (8, 0.24560077), (9, 0.0032275543)]
franz hell 10159 Franz Hell 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/94 Traffic, accident, severity [(0, 0.0043549775), (1, 0.0043550534), (2, 0.004354978), (3, 0.0043549775), (4, 0.0043550064), (5, 0.0043550967), (6, 0.0043549775), (7, 0.9608048), (8, 0.004355069), (9, 0.0043550376)]
frattini stefano 10267 Frattini Stefano 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/159 lazzari barbara, chessa stefania, talenti andrea, castiglioni bianca, marsan paolo, crepaldi paola, pagnacco giulio, williams john, stella alessandra Figshare 2018 Additional [(0, 0.016672082), (1, 0.016670983), (2, 0.016673623), (3, 0.6832785), (4, 0.016671475), (5, 0.016670097), (6, 0.18334706), (7, 0.01667465), (8, 0.016671354), (9, 0.016670162)]
freeman j. eric 10494 Freeman J. Eric 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
friedrich konrad beilstein 11194 Friedrich Konrad Beilstein 185592680, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/619 Beilstein, database [(0, 0.050002728), (1, 0.05001148), (2, 0.050002728), (3, 0.050002728), (4, 0.050002728), (5, 0.050002728), (6, 0.5499667), (7, 0.050002728), (8, 0.050002728), (9, 0.050002728)]
friel nial 10080 Friel Nial 33923547 https://www.aifb.kit.edu/web/DSKG/dataset/49 maire florian, mira antonietta Figshare 2019 Adaptive, Incremental, Mixture, Markov, Chain, Monte, Carlo [(0, 0.0010535594), (1, 0.0010535887), (2, 0.0010535251), (3, 0.6922657), (4, 0.035224542), (5, 0.0010534284), (6, 0.0010534169), (7, 0.0010536773), (8, 0.26513505), (9, 0.0010535433)]
froehlich caroline 10914 Froehlich Caroline 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/442 dekel gil 2016 Generating, music, resting-state [(0, 0.0013521106), (1, 0.0013520545), (2, 0.0013522317), (3, 0.0013522388), (4, 0.001351999), (5, 0.0013520344), (6, 0.0013521974), (7, 0.0013524091), (8, 0.0013523768), (9, 0.98783034)]
frolov 11234 Frolov 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/1873 sebastien, erik, kouwenhoven, vincent, k., kun, plissard, zuo Research Data, 4TU.Centre 2012 Signatures, Majorana, fermions, hybrid, superconductor-semiconductor, nanowire, devices [(0, 0.020003892), (1, 0.020003892), (2, 0.020003892), (3, 0.020003892), (4, 0.020003892), (5, 0.020003892), (6, 0.81996495), (7, 0.020003892), (8, 0.020003892), (9, 0.020003892)]
fuchs petra 10024 Fuchs Petra 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/18 stengel martin, finkensieper stephan, werscheck martin, van zadelhoff gerd-jan, benas nikolaos CM 2016 CLAAS-2:, CLoud, property, dAtAset, using, SEVIRI, Edition [(0, 0.0007817478), (1, 0.0007818785), (2, 0.0007817986), (3, 0.0007817648), (4, 0.0007817705), (5, 0.0007819013), (6, 0.0007818739), (7, 0.7842217), (8, 0.20952374), (9, 0.0007817838)]
fukuda masato 11048 Fukuda Masato 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
fullard john f. 10418 Fullard John F. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
fulu tao 10752 Fulu Tao 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/387 yuchuan luo, zhang zhao, chen yi, ziyue li Figshare 2019 ChinaCropPhen1km:, high-resolution, phenological, dataset, three, staple, crops, China, during, 2000-2015, based, products [(0, 0.0020415608), (1, 0.002041746), (2, 0.0020420388), (3, 0.0020413732), (4, 0.0020416616), (5, 0.0020414344), (6, 0.98162407), (7, 0.0020417627), (8, 0.0020419608), (9, 0.0020424204)]
g. lehmann 11290 G. Lehmann 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/2110 d. barardo, r. tacutu, e. johnson, e. diana, j. p. de magalhaes, v. e. fraifeld, d. toren, j. wang, t. craig, a. budovsky, d. thornton 2018 AnAge [(0, 0.020003892), (1, 0.4200142), (2, 0.020003803), (3, 0.020003935), (4, 0.020003803), (5, 0.020003803), (6, 0.020003803), (7, 0.020003803), (8, 0.41995516), (9, 0.020003803)]
gabriel rosinol 10219 Gabriel Rosinol 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/132 Micro-Loans [(0, 0.008340131), (1, 0.00834175), (2, 0.008340489), (3, 0.0083401315), (4, 0.92493176), (5, 0.008340581), (6, 0.008340261), (7, 0.008340218), (8, 0.008343998), (9, 0.008340651)]
gahr scott a., 10206 Gahr Scott A., 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/123 hale matthew c., colletti john a., scardina julie, thrower frank p., harmon matthew, carter megan, phillips ruth b., h. thorgaard gary, nichols krista m. Dryad Digital Repository 2014 mapping [(0, 0.004004699), (1, 0.0040043215), (2, 0.49930698), (3, 0.004006286), (4, 0.0040037967), (5, 0.0040038237), (6, 0.0040040216), (7, 0.004006944), (8, 0.004004246), (9, 0.4686549)]
gajewski konrad j. 10113 Gajewski Konrad J. 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/74 2017 pollen, surface, sample, dataset [(0, 0.020001749), (1, 0.020001719), (2, 0.02000143), (3, 0.02000143), (4, 0.020001603), (5, 0.02000203), (6, 0.81998396), (7, 0.02000175), (8, 0.020002592), (9, 0.020001773)]
gajewski konrad j. 10179 Gajewski Konrad J. 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/108 2017 pollen, surface, sample, dataset [(0, 0.020001745), (1, 0.020001719), (2, 0.02000143), (3, 0.02000143), (4, 0.020001603), (5, 0.020002076), (6, 0.81998396), (7, 0.020001752), (8, 0.020002512), (9, 0.020001769)]
gajewski konrad j. 10579 Gajewski Konrad J. 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/281 2017 Toothaker, pollen, surface, sample, dataset [(0, 0.014288588), (1, 0.014288575), (2, 0.014288444), (3, 0.014288444), (4, 0.014288523), (5, 0.014288717), (6, 0.87140256), (7, 0.014288589), (8, 0.014288959), (9, 0.014288599)]
gajewski konrad j. 11185 Gajewski Konrad J. 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/583 2017 pollen, surface, sample, dataset [(0, 0.020001737), (1, 0.020001713), (2, 0.020001428), (3, 0.020001428), (4, 0.020001601), (5, 0.020001985), (6, 0.8199844), (7, 0.020001743), (8, 0.020002272), (9, 0.020001762)]
gallipoli maria rosaria 10859 Gallipoli Maria Rosaria 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
gamst anthony 10815 Gamst Anthony https://www.aifb.kit.edu/web/DSKG/dataset/410 jong maarten de, chen wei, asta mark, persson kristin, angsten thomas, notestine randy, sluiter marcel, chaitanya krishna ande, sybrand van der, plata jose j., toher cormac, curtarolo stefano, ceder gerbrand Figshare 2018 Elastic, Tensor [(0, 0.0025006267), (1, 0.0025008286), (2, 0.0025004984), (3, 0.9774937), (4, 0.002500651), (5, 0.0025005413), (6, 0.0025006502), (7, 0.0025006433), (8, 0.0025011175), (9, 0.002500725)]
gandra miguel 10768 Gandra Miguel https://www.aifb.kit.edu/web/DSKG/dataset/392 correia ana m., liberal marcos, valente raul, agatha gil, rosso massimiliano, pierce graham j. figshare 2019 Metadata, record, dataset, cetacean, occurrences, Eastern, North, Atlantic [(0, 0.26775646), (1, 0.011120489), (2, 0.011119371), (3, 0.011119299), (4, 0.011123657), (5, 0.011119022), (6, 0.011122717), (7, 0.011119022), (8, 0.64327866), (9, 0.011121326)]
gao ping 10119 Gao Ping 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/77 yang hua, chengran zhou, guolin li, wang jing, maolin wang, wang rui, zhao yun figshare 2019 Metadata, record, Reference, small, multiple, tissues, Davidia, involucrata, Baill [(0, 0.0052666413), (1, 0.005266552), (2, 0.39063543), (3, 0.005265295), (4, 0.0052668964), (5, 0.005265483), (6, 0.5672355), (7, 0.005265628), (8, 0.0052664257), (9, 0.0052661407)]
garant dany 10349 Garant Dany https://www.aifb.kit.edu/web/DSKG/dataset/201 lamaze fabien c., scott a., normandeau eric, roy gabriel Dryad Digital Repository 2014 [(0, 0.35711527), (1, 0.0035764824), (2, 0.29206797), (3, 0.32578537), (4, 0.0035753278), (5, 0.003576157), (6, 0.0035757662), (7, 0.0035761038), (8, 0.0035762836), (9, 0.0035752861)]
garrott robert 11000 Garrott Robert 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/479 flesch elizabeth, rotella jay, thomson jennifer, graves tabitha Figshare 2018 Simulation, dataset [(0, 0.9307326), (1, 0.007697601), (2, 0.007695642), (3, 0.007695541), (4, 0.007696259), (5, 0.0076958183), (6, 0.0076964074), (7, 0.0076963184), (8, 0.0076982155), (9, 0.0076955752)]
gary broughton 11079 Gary Broughton 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/510 World, Marathon, Majors [(0, 0.0041678925), (1, 0.004168697), (2, 0.0041681854), (3, 0.744596), (4, 0.0041679917), (5, 0.0041682543), (6, 0.004168148), (7, 0.004168363), (8, 0.0041690418), (9, 0.22205743)]
gaston waringhien 11198 Gaston Waringhien 95457728, 33923547, 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/765 Sennacieca Asocio Tutmonda 1970 Plena, Ilustrita, Vortaro, Esperanto [(0, 0.1), (1, 0.1), (2, 0.1), (3, 0.1), (4, 0.1), (5, 0.1), (6, 0.1), (7, 0.1), (8, 0.1), (9, 0.1)]
ge deyan 10987 Ge Deyan 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/473 wen zhixin, quan qing, du yuanbao, xia lin, yang qisen Dryad Digital Repository 2016 Small, mammal, dataset [(0, 0.003851026), (1, 0.71095574), (2, 0.25824106), (3, 0.0038512235), (4, 0.0038500305), (5, 0.0038500158), (6, 0.0038501853), (7, 0.0038499627), (8, 0.0038505355), (9, 0.0038502412)]
gebel ronja 11159 Gebel Ronja 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/555 jeffery mairi louise, gutschow johannes, gieseke robert GFZ Data Services 2018 PRIMAP-crf:, UNFCCC, categories [(0, 0.00093484606), (1, 0.000934935), (2, 0.00093482033), (3, 0.0009348942), (4, 0.00093485555), (5, 0.0009348764), (6, 0.00093484996), (7, 0.9915861), (8, 0.00093494507), (9, 0.00093490136)]
geerlings henry 10308 Geerlings Henry 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/185 jong maarten de, chen wei, asta mark, persson kristin Figshare 2018 Piezoelectric, Tensor [(0, 0.003704297), (1, 0.0037044964), (2, 0.0037042042), (3, 0.96666), (4, 0.003704217), (5, 0.0037043015), (6, 0.0037044443), (7, 0.003704447), (8, 0.003704843), (9, 0.0037047495)]
geffard olivier 10946 Geffard Olivier 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/453 cogne yannick, pible olivier, gouveia duarte, francois adeline, bouchez olivier, eche camille, ford alex, armengaud jean, chaumot arnaud, almunia christine figshare 2019 Metadata, record, transcriptomes, gammarid, individuals, proteogenomic, analysis, seven, taxonomic, groups [(0, 0.0050043194), (1, 0.0050041666), (2, 0.0050037466), (3, 0.005003414), (4, 0.0050031887), (5, 0.0050032004), (6, 0.0050044227), (7, 0.0050036465), (8, 0.95496607), (9, 0.0050038155)]
geib scott 10327 Geib Scott 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/195 dupuis julian, peigler richard Dryad Digital Repository 2018 population, genetic, dataset [(0, 0.0058836117), (1, 0.0058837133), (2, 0.94704825), (3, 0.005884327), (4, 0.0058832876), (5, 0.0058832783), (6, 0.0058832257), (7, 0.005883502), (8, 0.0058834194), (9, 0.0058833356)]
gemmell neil 11146 Gemmell Neil 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/546 rosengrave patrice, montgomerie robert Dryad Digital Repository 2016 TRIOML [(0, 0.005561343), (1, 0.005561435), (2, 0.43266365), (3, 0.0055620717), (4, 0.0055612205), (5, 0.3596398), (6, 0.16876595), (7, 0.005561997), (8, 0.0055610673), (9, 0.005561497)]
george lewith 11247 George Lewith 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2042 niko kohls, harald walach 2009 Exceptional, Experience, Questionnaire [(0, 0.025008453), (1, 0.025010178), (2, 0.025008908), (3, 0.5250633), (4, 0.02500879), (5, 0.025008596), (6, 0.025008453), (7, 0.025008604), (8, 0.2748663), (9, 0.025008453)]
gergis joelle 10495 Gergis Joelle 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
gesquiere laurence 10924 Gesquiere Laurence 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/450 altmann jeanne, archie elizabeth a., alberts susan c. Dryad Digital Repository 2018 Fecal, hormones [(0, 0.0012993737), (1, 0.98830646), (2, 0.0012993362), (3, 0.0012991858), (4, 0.0012992643), (5, 0.0012991697), (6, 0.0012991786), (7, 0.0012993537), (8, 0.0012993573), (9, 0.0012993485)]
gesquiere laurence 11113 Gesquiere Laurence 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/526 altmann jeanne, archie elizabeth a., alberts susan c. Dryad Digital Repository 2018 duration [(0, 0.002129109), (1, 0.98083806), (2, 0.0021291943), (3, 0.0021291843), (4, 0.002128799), (5, 0.0021289664), (6, 0.0021291887), (7, 0.0021288702), (8, 0.002129763), (9, 0.0021288516)]
ghassem asrar 10250 Ghassem Asrar 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/149 xuecao li, yuyu zhou, meng lin, chaoqun lu, qiusheng wu Figshare 2019 dataset, 30-meter, annual, vegetation, phenology, indicators, (1985-2015), urban, areas, conterminous, United, States [(0, 0.001516307), (1, 0.73037845), (2, 0.0015163294), (3, 0.0015162535), (4, 0.0015162897), (5, 0.0015165778), (6, 0.0015167102), (7, 0.0015168199), (8, 0.25748992), (9, 0.0015164119)]
ghiggi gionata 10640 Ghiggi Gionata 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/316 gudmundsson lukas, humphrey vincent figshare 2019 Global, Runoff, Reconstruction [(0, 0.0012667561), (1, 0.049627453), (2, 0.0012666767), (3, 0.0012665575), (4, 0.0012667438), (5, 0.0012668476), (6, 0.0012668843), (7, 0.66382563), (8, 0.0012667908), (9, 0.2776797)]
ghirardini andrea 10128 Ghirardini Andrea 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/82 aschonitis vassilis g, mastrocicco micol, papamichail dimitris, kleoniki, colombani nicolo, castaldelli giuseppe, fano elisa-anna PANGAEA - Data Publisher for Earth & Environmental Science 2017 resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation,, links, ESRI-grid, files,, supplement, Aschonitis,, Vassilis, Papamichail,, Dimitris;, Demertzi,, Kleoniki;, Colombani,, Nicolo;, Mastrocicco,, Micol;, Ghirardini,, Andrea;, Castaldelli,, Giuseppe;, Fano,, Elisa-Anna, (2017):, High-resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation., Earth, System, Science, Data,, 9(2),, 615-638 [(0, 0.0005132323), (1, 0.0005132701), (2, 0.00051321497), (3, 0.00051319704), (4, 0.00051321386), (5, 0.0005132613), (6, 0.028460743), (7, 0.2619134), (8, 0.6910191), (9, 0.015527402)]
ghouila 10782 Ghouila 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/396 psomopoulos fotis figshare 2019 Introduction, Machine, Learning [(0, 0.18091582), (1, 0.0014505308), (2, 0.05437098), (3, 0.3209242), (4, 0.0014503406), (5, 0.001450275), (6, 0.001450453), (7, 0.0014504188), (8, 0.43508646), (9, 0.0014505751)]
giancarlo rovati 11274 Giancarlo Rovati 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/2055 roberto cipriani, vincenzo cesareo, clemente lanzetti 1994 Religion, Italy [(0, 0.1), (1, 0.1), (2, 0.1), (3, 0.1), (4, 0.1), (5, 0.1), (6, 0.1), (7, 0.1), (8, 0.1), (9, 0.1)]
gieseke robert 11158 Gieseke Robert 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/555 jeffery mairi louise, gutschow johannes, gebel ronja GFZ Data Services 2018 PRIMAP-crf:, UNFCCC, categories [(0, 0.00093484606), (1, 0.000934935), (2, 0.00093482033), (3, 0.0009348942), (4, 0.00093485555), (5, 0.0009348764), (6, 0.00093484996), (7, 0.9915861), (8, 0.00093494507), (9, 0.00093490136)]
gifford miriam l. 10604 Gifford Miriam L. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/299 nigel j., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.06490304), (1, 0.1070259), (2, 0.18610051), (3, 0.3643822), (4, 0.0011773852), (5, 0.0011773492), (6, 0.0011774445), (7, 0.0011774695), (8, 0.27170125), (9, 0.0011774856)]
gifford miriam l. 10685 Gifford Miriam L. https://www.aifb.kit.edu/web/DSKG/dataset/351 nigel j., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.0024406072), (1, 0.0024404959), (2, 0.48463523), (3, 0.3690657), (4, 0.0024402626), (5, 0.0024400789), (6, 0.0024400258), (7, 0.0024401515), (8, 0.12921718), (9, 0.0024402505)]
gilmore camilla 10136 Gilmore Camilla 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/85 eaves joanne, attridge nina Figshare 2019 Study, stimuli [(0, 0.0012346947), (1, 0.0012347773), (2, 0.9888875), (3, 0.0012347024), (4, 0.0012347177), (5, 0.0012346945), (6, 0.001234698), (7, 0.0012347726), (8, 0.0012347733), (9, 0.0012347109)]
gilmore camilla 10585 Gilmore Camilla 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/289 eaves joanne, attridge nina Figshare 2019 Study [(0, 0.0012196369), (1, 0.0012197181), (2, 0.9890229), (3, 0.0012196446), (4, 0.0012196634), (5, 0.0012196366), (6, 0.0012196461), (7, 0.0012197149), (8, 0.0012197134), (9, 0.0012196539)]
gilmore camilla 10683 Gilmore Camilla 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/349 eaves joanne, attridge nina Figshare 2019 Study [(0, 0.001219637), (1, 0.0012197177), (2, 0.9890229), (3, 0.0012196447), (4, 0.0012196635), (5, 0.0012196368), (6, 0.0012196462), (7, 0.001219715), (8, 0.0012197184), (9, 0.001219654)]
gilmore camilla 11184 Gilmore Camilla 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/581 eaves joanne, attridge nina Figshare 2019 Study [(0, 0.0012196369), (1, 0.0012197172), (2, 0.9890229), (3, 0.0012196446), (4, 0.0012196634), (5, 0.0012196366), (6, 0.0012196461), (7, 0.0012197149), (8, 0.0012197131), (9, 0.0012196539)]
girdhar kiran 10416 Girdhar Kiran 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
giulio giuseppe di 10833 Giulio Giuseppe Di 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
goldston josh 10141 Goldston Josh https://www.aifb.kit.edu/web/DSKG/dataset/87 charbonneau amanda, tack david, lale allison, caple mackenzie, conner emma, barazani oz, ziffer-berger jotham, dworkin ian, conner jeff Dryad Digital Repository 2018 [(0, 0.06347562), (1, 0.0052664205), (2, 0.44835892), (3, 0.005266149), (4, 0.0052664382), (5, 0.0052660224), (6, 0.005265994), (7, 0.451302), (8, 0.005266528), (9, 0.005265935)]
goodale eben 10280 Goodale Eben 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/162 chen jin, goodale uromi, kotagama sarath wimalabandara, sidhu swati Dryad Digital Repository 2015 Transect, database [(0, 0.18610847), (1, 0.21436661), (2, 0.0024411567), (3, 0.36698642), (4, 0.002440713), (5, 0.0024403601), (6, 0.00244038), (7, 0.0024407038), (8, 0.21789475), (9, 0.0024404053)]
goodale uromi 10277 Goodale Uromi 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/162 chen jin, kotagama sarath wimalabandara, sidhu swati, goodale eben Dryad Digital Repository 2015 Transect, database [(0, 0.18610847), (1, 0.21436661), (2, 0.0024411567), (3, 0.36698642), (4, 0.002440713), (5, 0.0024403601), (6, 0.00244038), (7, 0.0024407038), (8, 0.21789475), (9, 0.0024404053)]
gor khachatryan 10114 Gor Khachatryan 41008148, 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/76 people, purchase [(0, 0.0050031175), (1, 0.005004363), (2, 0.005005899), (3, 0.0050032795), (4, 0.0050038593), (5, 0.005003241), (6, 0.005003067), (7, 0.9549659), (8, 0.005003861), (9, 0.0050033717)]
gorelick noel 10355 Gorelick Noel 127313418, 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/203 scherler dirk, wulf hendrik GFZ Data Services 2018 Supraglacial, Debris, Cover [(0, 0.00073612784), (1, 0.0007360662), (2, 0.0007359821), (3, 0.00073597505), (4, 0.00073604746), (5, 0.0007360783), (6, 0.26737022), (7, 0.21552747), (8, 0.51195), (9, 0.0007360321)]
gorgolewski kj 10791 Gorgolewski KJ 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/400 storkey a, wardlaw jm, pernet cr 2018 European, Soccer, Database [(0, 0.0005992316), (1, 0.08195699), (2, 0.00059930247), (3, 0.00059927406), (4, 0.00059926324), (5, 0.00059925223), (6, 0.00059926684), (7, 0.5338954), (8, 0.37995267), (9, 0.0005993351)]
gorgolewski krzysztof 10679 Gorgolewski Krzysztof 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/342 berleant shoshana Figshare 2016 Uncompressed, version [(0, 0.012512633), (1, 0.012507022), (2, 0.012516472), (3, 0.012508001), (4, 0.012506908), (5, 0.88741595), (6, 0.012506899), (7, 0.012507107), (8, 0.012510997), (9, 0.012508005)]
gorrell genevieve 10453 Gorrell Genevieve 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/242 derczynski leon, zubiaga arkaitz, kochkina elena, aker ahmet, bontcheva kalina, liakata maria Figshare 2019 RumourEval [(0, 0.0034522405), (1, 0.0034517262), (2, 0.0034515297), (3, 0.0034516058), (4, 0.63409746), (5, 0.0034525406), (6, 0.19449508), (7, 0.0034517439), (8, 0.14724432), (9, 0.00345177)]
gouretski viktor 10344 Gouretski Viktor 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/200 World Data Center for Climate 2018 WOCE-Argo, Global, Hydrographic, Climatology, (WAGHC, Version [(0, 0.0006105635), (1, 0.00061068434), (2, 0.00061061996), (3, 0.0006105311), (4, 0.0006106487), (5, 0.051778376), (6, 0.00061075133), (7, 0.3717046), (8, 0.5549774), (9, 0.01787581)]
gouveia duarte 10941 Gouveia Duarte 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/453 cogne yannick, pible olivier, francois adeline, bouchez olivier, eche camille, ford alex, geffard olivier, armengaud jean, chaumot arnaud, almunia christine figshare 2019 Metadata, record, transcriptomes, gammarid, individuals, proteogenomic, analysis, seven, taxonomic, groups [(0, 0.0050043194), (1, 0.0050041666), (2, 0.0050037466), (3, 0.005003414), (4, 0.0050031887), (5, 0.0050032004), (6, 0.0050044227), (7, 0.0050036465), (8, 0.95496607), (9, 0.0050038155)]
gowan evan j 10369 Gowan Evan J 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/215 niu lu, knorr gregor, lohmann gerrit PANGAEA - Data Publisher for Earth & Environmental Science 2018 Geology, datasets, North, America,, Greenland, surrounding, areas, sheet, models,, supplement, Gowan,, Knorr,, Gregor;, Lohmann,, Gerrit, (2019):, Geology, datasets, North, America,, Greenland, surrounding, areas, sheet, models., Earth, System, Science, Data,, 11(1),, 375-391 [(0, 0.003228117), (1, 0.00322831), (2, 0.0032279082), (3, 0.0032286241), (4, 0.0032280716), (5, 0.0032279247), (6, 0.6288874), (7, 0.34528613), (8, 0.0032285403), (9, 0.0032289536)]
grachev mikhail aleksandrovich 10648 Grachev Mikhail Aleksandrovich 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/324 figshare 2019 Metadata, record, transcriptome, assembly, analysis, freshwater, araphid, diatom, Fragilaria, radians,, Baikal [(0, 0.15195283), (1, 0.009093534), (2, 0.2276941), (3, 0.00909303), (4, 0.009092797), (5, 0.009092789), (6, 0.009095897), (7, 0.009093424), (8, 0.55669767), (9, 0.009093989)]
graf tanja 10447 Graf Tanja 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/240 chen wei, persson kristin, mrdjenovich david, ballouz eric, liu miao, winston donald, thomas d., prinz fritz b. Figshare 2018 Dielectric, Constant [(0, 0.0020839851), (1, 0.002084241), (2, 0.0020839015), (3, 0.81947345), (4, 0.0020839167), (5, 0.0020840997), (6, 0.002084219), (7, 0.002084031), (8, 0.16385399), (9, 0.0020841232)]
graham david 10162 Graham David 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/98 zheng jianqiu Oak Ridge National Laboratory, TN, Oak Ridge, US 2016 Production, Oxidation, Temperature, Incubations, Flat-, High-Centered, Polygons,, Barrow,, Alaska, [(0, 0.0025015024), (1, 0.0025011885), (2, 0.0025015455), (3, 0.002501089), (4, 0.00250136), (5, 0.16722082), (6, 0.002501464), (7, 0.0025018202), (8, 0.0025015806), (9, 0.8127676)]
graham david 11014 Graham David https://www.aifb.kit.edu/web/DSKG/dataset/487 chen hongmei, yang ziming, chu rosalie, liang liyuan, wullschleger stan, gu baohua Oak Ridge National Laboratory, TN, Oak Ridge, US 2018 ESI-FTICR-MS, Molecular, Characterization, Degradation, under, Warming, Tundra, Soils, Barrow,, Alaska [(0, 0.0020430337), (1, 0.0020430312), (2, 0.0020425203), (3, 0.5381932), (4, 0.0020427343), (5, 0.002042781), (6, 0.0020428018), (7, 0.20485827), (8, 0.24264874), (9, 0.0020428668)]
graves tabitha 10999 Graves Tabitha 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/479 flesch elizabeth, rotella jay, thomson jennifer, garrott robert Figshare 2018 Simulation, dataset [(0, 0.9307326), (1, 0.007697601), (2, 0.007695642), (3, 0.007695541), (4, 0.007696259), (5, 0.0076958183), (6, 0.0076964074), (7, 0.0076963184), (8, 0.0076982155), (9, 0.0076955752)]
greenberg steve a 10711 Greenberg Steve A 127413603, 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/361 kyu-baek hwang, peter j Figshare 2011 schematic, procedure [(0, 0.7178245), (1, 0.001962523), (2, 0.0019623917), (3, 0.0019620636), (4, 0.0019624752), (5, 0.0019620068), (6, 0.001962115), (7, 0.0019626576), (8, 0.2664768), (9, 0.001962491)]
greg 10758 Greg 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/389 vigalondo beatriz Dryad Digital Repository 2017 Allele, files [(0, 0.4304544), (1, 0.0062537775), (2, 0.006255434), (3, 0.33492893), (4, 0.006253634), (5, 0.0062545445), (6, 0.0062543866), (7, 0.1908371), (8, 0.0062540597), (9, 0.006253762)]
greg e. 10429 Greg E. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
griesser michael 10573 Griesser Michael 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/277 wagner gretchen f., m. drobniak szymon, ekman jan Dryad Digital Repository 2017 female, survival [(0, 0.0038504086), (1, 0.003850529), (2, 0.19672926), (3, 0.0038500207), (4, 0.04689146), (5, 0.003849987), (6, 0.0038509804), (7, 0.0038510857), (8, 0.0038501914), (9, 0.7294261)]
grobe hannes 11038 Grobe Hannes 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
groisman p. y. 10538 Groisman P. Y. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
grossen christine 10965 Grossen Christine 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/461 brambilla alice, keller lukas, bassano bruno Dryad Digital Repository 2017 heterozygosity-fitness [(0, 0.0028594495), (1, 0.0028595387), (2, 0.0028591931), (3, 0.0028589326), (4, 0.0028587556), (5, 0.002858702), (6, 0.0028587976), (7, 0.9742685), (8, 0.0028594194), (9, 0.0028587575)]
gu baohua 11020 Gu Baohua https://www.aifb.kit.edu/web/DSKG/dataset/487 graham david, chen hongmei, yang ziming, chu rosalie, liang liyuan, wullschleger stan Oak Ridge National Laboratory, TN, Oak Ridge, US 2018 ESI-FTICR-MS, Molecular, Characterization, Degradation, under, Warming, Tundra, Soils, Barrow,, Alaska [(0, 0.0020430337), (1, 0.0020430312), (2, 0.0020425203), (3, 0.5381932), (4, 0.0020427343), (5, 0.002042781), (6, 0.0020428018), (7, 0.20485827), (8, 0.24264874), (9, 0.0020428668)]
gudmundsson lukas 10641 Gudmundsson Lukas 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/316 ghiggi gionata, humphrey vincent figshare 2019 Global, Runoff, Reconstruction [(0, 0.0012667561), (1, 0.049627453), (2, 0.0012666767), (3, 0.0012665575), (4, 0.0012667438), (5, 0.0012668476), (6, 0.0012668843), (7, 0.66382563), (8, 0.0012667908), (9, 0.2776797)]
gudmundsson lukas 10644 Gudmundsson Lukas 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/320 humphrey vincent Figshare 2019 GRACE-REC:, reconstruction, climate-driven, water, storage, changes, century [(0, 0.01652102), (1, 0.00033131274), (2, 0.00033127522), (3, 0.0003312709), (4, 0.00033128803), (5, 0.0003313322), (6, 0.0003312877), (7, 0.9808285), (8, 0.00033135244), (9, 0.0003312992)]
guiyong liu 10796 Guiyong Liu https://www.aifb.kit.edu/web/DSKG/dataset/402 yongbo liang, zhencheng chen, elgendi mohamed Figshare 2017 PPG-BP, Database [(0, 0.120626606), (1, 0.29593638), (2, 0.45990443), (3, 0.0014942605), (4, 0.0014938889), (5, 0.001493661), (6, 0.0014937703), (7, 0.0014938915), (8, 0.11456882), (9, 0.0014942489)]
guo weisi 10069 Guo Weisi https://www.aifb.kit.edu/web/DSKG/dataset/41 2019 World, Cities [(0, 0.0012671221), (1, 0.17475009), (2, 0.0012671527), (3, 0.0012671604), (4, 0.0012671333), (5, 0.0012671498), (6, 0.0012671356), (7, 0.0012673509), (8, 0.8151124), (9, 0.0012672702)]
guo yuxin 10901 Guo Yuxin 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/436 chen chong, xie tong, cui wei, meng haotian, jin xiaoye, zhu bofeng Dryad Digital Repository 2018 RAW_DATA [(0, 0.24413738), (1, 0.10899984), (2, 0.27884537), (3, 0.0019253815), (4, 0.35646468), (5, 0.001925676), (6, 0.0019252333), (7, 0.001925537), (8, 0.0019255829), (9, 0.0019253182)]
guolin li 10117 Guolin Li 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/77 yang hua, chengran zhou, wang jing, gao ping, maolin wang, wang rui, zhao yun figshare 2019 Metadata, record, Reference, small, multiple, tissues, Davidia, involucrata, Baill [(0, 0.0052666413), (1, 0.005266552), (2, 0.39063543), (3, 0.005265295), (4, 0.0052668964), (5, 0.005265483), (6, 0.5672355), (7, 0.005265628), (8, 0.0052664257), (9, 0.0052661407)]
gur raquel 10421 Gur Raquel 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
gustavo bonesso 10465 Gustavo Bonesso 33923547, 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/246 [(0, 0.0034491033), (1, 0.7894336), (2, 0.0034494367), (3, 0.0034492544), (4, 0.0034492707), (5, 0.0034493895), (6, 0.18297048), (7, 0.0034496803), (8, 0.0034501276), (9, 0.0034497194)]
gustavo bonesso 10721 Gustavo Bonesso 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/364 [(0, 0.0041674785), (1, 0.7359871), (2, 0.0041679707), (3, 0.004167615), (4, 0.004167716), (5, 0.0041677845), (6, 0.23066963), (7, 0.0041680657), (8, 0.00416848), (9, 0.0041681146)]
gutschow johannes 11157 Gütschow Johannes 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/555 jeffery mairi louise, gieseke robert, gebel ronja GFZ Data Services 2018 PRIMAP-crf:, UNFCCC, categories [(0, 0.00093484606), (1, 0.000934935), (2, 0.00093482033), (3, 0.0009348942), (4, 0.00093485555), (5, 0.0009348764), (6, 0.00093484996), (7, 0.9915861), (8, 0.00093494507), (9, 0.00093490136)]
guy tanentzapf 10892 Guy Tanentzapf https://www.aifb.kit.edu/web/DSKG/dataset/430 michael lee, alexander perkins, perkins alexander, tanentzapf guy, lee michael figshare 2019 Data.xlsx [(0, 0.38986102), (1, 0.0025018675), (2, 0.002502987), (3, 0.0025023213), (4, 0.0025019143), (5, 0.0025020312), (6, 0.0025019953), (7, 0.28618985), (8, 0.30643418), (9, 0.0025018284)]
h. pinzon c. jorge 11025 H. Pinzón C. Jorge 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/488 rippe john p., v. matz mikhail, medina monica, khawaja nida z., d. castillo karl, w. davies sarah Dryad Digital Repository 2017 Microsatellite, genotype [(0, 0.0050014686), (1, 0.0050021126), (2, 0.25499824), (3, 0.0050017047), (4, 0.005001192), (5, 0.005001265), (6, 0.005001028), (7, 0.0050018337), (8, 0.7049896), (9, 0.0050015687)]
h. thorgaard gary 10212 H. Thorgaard Gary 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/123 hale matthew c., colletti john a., gahr scott a.,, scardina julie, thrower frank p., harmon matthew, carter megan, phillips ruth b., nichols krista m. Dryad Digital Repository 2014 mapping [(0, 0.004004699), (1, 0.0040043215), (2, 0.49930698), (3, 0.004006286), (4, 0.0040037967), (5, 0.0040038237), (6, 0.0040040216), (7, 0.004006944), (8, 0.004004246), (9, 0.4686549)]
haeffelin martial 11049 Haeffelin Martial 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
hailemikael salomon 10853 Hailemikael Salomon 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
hakuba maria z 10870 Hakuba Maria Z 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/416 schwarz matthias, wild martin, ohmura atsumu, schar christoph, muller guido, folini doris, lorenzo arturo PANGAEA - Data Publisher for Earth & Environmental Science 2017 Global, Energy, Balance, Archive, (GEBA), version, 2017:, database, worldwide, measured, surface, energy, fluxes., database, files,, supplement, Wild,, Martin;, Ohmura,, Atsumu;, Schär,, Christoph;, Müller,, Guido;, Folini,, Doris;, Schwarz,, Matthias;, Hakuba,, Maria, Sanchez-Lorenzo,, Arturo, (2017):, Global, Energy, Balance, Archive, (GEBA), version, 2017:, database, worldwide, measured, surface, energy, fluxes., Earth, System, Science, Data,, 9(2),, 601-613 [(0, 0.08709674), (1, 0.0008006429), (2, 0.00080067), (3, 0.00080083293), (4, 0.00080070284), (5, 0.092057034), (6, 0.00080055185), (7, 0.28708142), (8, 0.52896065), (9, 0.00080073724)]
halchenko yaroslav 10311 Halchenko Yaroslav 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/186 2016 DueCredit:, automated, collection, citations, software,, methods, [(0, 0.026499908), (1, 0.6023962), (2, 0.0006814939), (3, 0.00068137766), (4, 0.00068132795), (5, 0.00068128173), (6, 0.0006813854), (7, 0.00068137766), (8, 0.30187988), (9, 0.065135755)]
hale matthew c. 10204 Hale Matthew C. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/123 colletti john a., gahr scott a.,, scardina julie, thrower frank p., harmon matthew, carter megan, phillips ruth b., h. thorgaard gary, nichols krista m. Dryad Digital Repository 2014 mapping [(0, 0.004004699), (1, 0.0040043215), (2, 0.49930698), (3, 0.004006286), (4, 0.0040037967), (5, 0.0040038237), (6, 0.0040040216), (7, 0.004006944), (8, 0.004004246), (9, 0.4686549)]
hany 10917 Hany 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/446 kadi adnan, attwa mohamed Dryad Digital Repository 2018 [(0, 0.011121234), (1, 0.011119265), (2, 0.011124099), (3, 0.011119536), (4, 0.011118562), (5, 0.011119082), (6, 0.011133998), (7, 0.011119686), (8, 0.01111952), (9, 0.899905)]
harald walach 11249 Harald Walach 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2042 george lewith, niko kohls 2009 Exceptional, Experience, Questionnaire [(0, 0.025008453), (1, 0.025010178), (2, 0.025008908), (3, 0.5250633), (4, 0.02500879), (5, 0.025008596), (6, 0.025008453), (7, 0.025008604), (8, 0.2748663), (9, 0.025008453)]
hardik r. shah 10413 Hardik R. Shah 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
harmon matthew 10209 Harmon Matthew 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/123 hale matthew c., colletti john a., gahr scott a.,, scardina julie, thrower frank p., carter megan, phillips ruth b., h. thorgaard gary, nichols krista m. Dryad Digital Repository 2014 mapping [(0, 0.004004699), (1, 0.0040043215), (2, 0.49930698), (3, 0.004006286), (4, 0.0040037967), (5, 0.0040038237), (6, 0.0040040216), (7, 0.004006944), (8, 0.004004246), (9, 0.4686549)]
haroutunian vahram 10425 Haroutunian Vahram 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
harris martyn 10474 Harris Martyn https://www.aifb.kit.edu/web/DSKG/dataset/255 levene mark Figshare 2018 Nobel, Prize, winners [(0, 0.014298388), (1, 0.014303934), (2, 0.0143006435), (3, 0.014298743), (4, 0.014306053), (5, 0.014297346), (6, 0.014297972), (7, 0.014299149), (8, 0.01429828), (9, 0.8712995)]
harris rebecca b., 10124 Harris Rebecca B., 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/79 Dryad Digital Repository 2014 Orthologous, groups [(0, 0.27819082), (1, 0.19316928), (2, 0.003452616), (3, 0.0034532617), (4, 0.0034538873), (5, 0.0034528084), (6, 0.0034523702), (7, 0.0034522621), (8, 0.0034536277), (9, 0.5044691)]
hasson uri 10342 Hasson Uri 86803240, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/198 lerner yulia, scherf k. suzy, katkov mikhail, behrmann marlene Figshare 2018 Developmental, trajectories, brain, development [(0, 0.0021756173), (1, 0.0021761425), (2, 0.0021760834), (3, 0.002175505), (4, 0.0021757244), (5, 0.0021765279), (6, 0.002175662), (7, 0.0021755423), (8, 0.9804178), (9, 0.0021754322)]
hatherill mark 10898 Hatherill Mark 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/435 rodo miguel, rozot virginie, dintwe one b., nemes elisa Figshare 2019 Megapool [(0, 0.0038491406), (1, 0.0038491774), (2, 0.9653577), (3, 0.0038484617), (4, 0.0038499017), (5, 0.0038489315), (6, 0.003849372), (7, 0.003848817), (8, 0.0038493455), (9, 0.0038491841)]
hauberg mads e. 10414 Hauberg Mads E. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
hawkins ed 10496 Hawkins Ed 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
hayashi hiroki 10934 Hayashi Hiroki 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/452 yasuhara moriaki, iwatani hokuto, hunt gene, okahashi hisayo, kase tomoki, irizuki toshiaki, yolanda m., fernando allan gil s., renema willem Dryad Digital Repository 2016 Modern, dataset [(0, 0.006672621), (1, 0.0066716587), (2, 0.0066717216), (3, 0.0066711693), (4, 0.93995297), (5, 0.0066711684), (6, 0.0066711684), (7, 0.0066744406), (8, 0.0066717444), (9, 0.0066713416)]
hayden benjamin 10076 Hayden Benjamin 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/47 pragathi priyadharsini balasubramani Figshare 2019 [(0, 0.058658145), (1, 0.0047677527), (2, 0.004768079), (3, 0.11417535), (4, 0.0047672363), (5, 0.004767358), (6, 0.1575636), (7, 0.23290406), (8, 0.41286096), (9, 0.0047674878)]
he wenlong 11077 He Wenlong 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/507 zhang liang University of Strathclyde 2018 W-band, gyro-TWA [(0, 0.0045515746), (1, 0.004550424), (2, 0.4448452), (3, 0.004549812), (4, 0.0045493636), (5, 0.004549812), (6, 0.0045500104), (7, 0.00455027), (8, 0.25535882), (9, 0.26794472)]
heathcote john a. 10137 Heathcote John A. https://www.aifb.kit.edu/web/DSKG/dataset/86 Figshare 2019 samples, needed, prove, absence, contamination, example, using, arsenic? [(0, 0.0012684698), (1, 0.5746972), (2, 0.0012685938), (3, 0.0012683439), (4, 0.048751634), (5, 0.01714831), (6, 0.0012684867), (7, 0.0012687132), (8, 0.26887658), (9, 0.08418363)]
hemby scott 10426 Hemby Scott 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
henderson david s. 10318 Henderson David S. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/193 mulmenstadt johannes, sourdeval odran, l'ecuyer tristan s., russell lynn m. World Data Center for Climate 2018 Using, CALIOP, estimate, cloud-field, height, uncertainty:, Cloud, Altitude, Spatial, Extrapolator, (CBASE), algorithm, dataset [(0, 0.0011245287), (1, 0.0011244992), (2, 0.0011243506), (3, 0.0011243452), (4, 0.0011243349), (5, 0.8128101), (6, 0.0011243607), (7, 0.17819458), (8, 0.0011245662), (9, 0.0011243491)]
henderson tristan 10746 Henderson Tristan 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/385 Figshare 2018 Lecture, capture, survey [(0, 0.004547198), (1, 0.0045489417), (2, 0.004547389), (3, 0.0045472463), (4, 0.0045471704), (5, 0.004548191), (6, 0.9590702), (7, 0.004547872), (8, 0.0045475713), (9, 0.0045482162)]
hendrik 10070 Hendrik 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/42 brey thomas PANGAEA - Data Publisher for Earth & Environmental Science 2019 Spatial, distribution, flying, seabird, (Antarctic, petrel), penguins, (Adélie, penguin,, Emperor, penguin), wider, Weddell, (Antarctica), links, ArcGIS, packages [(0, 0.00048581202), (1, 0.00048583993), (2, 0.0004858077), (3, 0.00048580786), (4, 0.00048578423), (5, 0.0004858905), (6, 0.059593845), (7, 0.25404486), (8, 0.00048588752), (9, 0.6829605)]
hendrik 11073 Hendrik 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/504 brey thomas PANGAEA - Data Publisher for Earth & Environmental Science 2019 Spatial, distribution, zoobenthos, (sponges,, echinoderms), wider, Weddell, (Antarctica), links, ArcGIS, packages [(0, 0.0011777474), (1, 0.0011782402), (2, 0.0011777619), (3, 0.21882609), (4, 0.001177997), (5, 0.001178056), (6, 0.0011778533), (7, 0.26097256), (8, 0.33667588), (9, 0.17645784)]
hernan sanabria 10065 Hernan Sanabria 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/36 fonseca andres Figshare 2017 dataset [(0, 0.009094183), (1, 0.009095392), (2, 0.009097402), (3, 0.009095439), (4, 0.009094108), (5, 0.009095616), (6, 0.630859), (7, 0.009094434), (8, 0.009097301), (9, 0.2963771)]
hernan sanabria 10676 Hernan Sanabria 41008148, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/341 fonseca andres Figshare 2017 Histogram, Inputs [(0, 0.020015916), (1, 0.020018144), (2, 0.020026313), (3, 0.020019934), (4, 0.02001593), (5, 0.53204685), (6, 0.020018253), (7, 0.020035753), (8, 0.020024678), (9, 0.3077782)]
herrero javier 10164 Herrero Javier 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/99 pimentel rafael PANGAEA - Data Publisher for Earth & Environmental Science 2017 Cover, Fraction, (SCF), depth, obtained, using, terrestrial, photography, (2009-2013), control, Refugio, Poqueira, (Sierra, Nevada,, Spain),, supplement, Pimentel,, Rafael;, Herrero,, Javier;, Polo,, María, (2017):, Subgrid, parameterization, distribution, Mediterranean, using, terrestrial, photography., Hydrology, Earth, System, Sciences,, 21(2),, 805-820 [(0, 0.0009014949), (1, 0.0009016187), (2, 0.00090143416), (3, 0.00090148766), (4, 0.0009015965), (5, 0.00090143044), (6, 0.0009015426), (7, 0.99188626), (8, 0.000901622), (9, 0.0009015049)]
herrero javier 10884 Herrero Javier 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/426 pimentel rafael PANGAEA - Data Publisher for Earth & Environmental Science 2019 cover, Guadalfeo, Monitoring, Network, (Sierra, Nevada,, Spain),, supplement, Polo,, María, José;, Herrero,, Javier;, Pimentel,, Rafael;, Pérez-Palazón,, María, (2019):, Guadalfeo, Monitoring, Network, (Sierra, Nevada,, Spain):, years, measurements, understand, complexity, dynamics, semiarid, regions., Earth, System, Science, Data,, 11(1),, 393-407 [(0, 0.0021756443), (1, 0.0021757442), (2, 0.52362233), (3, 0.0021752922), (4, 0.002175405), (5, 0.0021757393), (6, 0.0021753625), (7, 0.4589723), (8, 0.0021764075), (9, 0.0021757442)]
hersbach h. 10539 Hersbach H. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
hersh david s. 10615 Hersh David S. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/299 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.06490304), (1, 0.1070259), (2, 0.18610051), (3, 0.3643822), (4, 0.0011773852), (5, 0.0011773492), (6, 0.0011774445), (7, 0.0011774695), (8, 0.27170125), (9, 0.0011774856)]
hersh david s. 10696 Hersh David S. https://www.aifb.kit.edu/web/DSKG/dataset/351 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.0024406072), (1, 0.0024404959), (2, 0.48463523), (3, 0.3690657), (4, 0.0024402626), (5, 0.0024400789), (6, 0.0024400258), (7, 0.0024401515), (8, 0.12921718), (9, 0.0024402505)]
herzyk pawel 10779 Herzyk Pawel 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/395 wang jing, kean laura, jingli yang, allan adrian k, shireen a, dow julian Figshare 2011 phenotype [(0, 0.93111986), (1, 0.0033351902), (2, 0.04220043), (3, 0.0033347197), (4, 0.0033348387), (5, 0.0033347732), (6, 0.0033351888), (7, 0.0033348722), (8, 0.0033352363), (9, 0.003334876)]
hobbs helen h 10262 Hobbs Helen H 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/156 yi ming, horton jay d, cohen jonathan c, stephens robert m Figshare 2011 example, files, which, multiple, microarray, datasets, analyzed, simultaneously [(0, 0.1363776), (1, 0.0023842782), (2, 0.0023833408), (3, 0.2892783), (4, 0.002383426), (5, 0.0023833641), (6, 0.09284374), (7, 0.0023836694), (8, 0.46719885), (9, 0.0023834463)]
hodges gary 11050 Hodges Gary 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
hoffman gabriel e. 10408 Hoffman Gabriel E. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
hooper david 10095 Hooper David 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/57 collins joel University of Bath 2017 Strong, Rotational, Anisotropies, Affect, Nonlinear, Chiral, Metamaterials [(0, 0.0009179849), (1, 0.23213328), (2, 0.76052225), (3, 0.00091797835), (4, 0.0009180202), (5, 0.000918135), (6, 0.0009179931), (7, 0.0009181679), (8, 0.0009182094), (9, 0.0009179795)]
horton jay d 10260 Horton Jay D 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/156 yi ming, cohen jonathan c, hobbs helen h, stephens robert m Figshare 2011 example, files, which, multiple, microarray, datasets, analyzed, simultaneously [(0, 0.1363776), (1, 0.0023842782), (2, 0.0023833408), (3, 0.2892783), (4, 0.002383426), (5, 0.0023833641), (6, 0.09284374), (7, 0.0023836694), (8, 0.46719885), (9, 0.0023834463)]
hsu jui-ling 10394 Hsu Jui-Ling 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/225 niu shan-ce, xu qing, zhang guo-qiang, zhang yong-qiang, tsai wen-chieh, liang chieh-kai, luo yi-bo, liu zhong-jian Dryad Digital Repository 2016 transcriptome, assembly [(0, 0.003851089), (1, 0.0038520696), (2, 0.21791379), (3, 0.0038512107), (4, 0.003852284), (5, 0.0038514584), (6, 0.0038511688), (7, 0.7512733), (8, 0.0038515604), (9, 0.003852084)]
hu zhaorong 10732 Hu Zhaorong 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/379 yang hua, liu xinye, xin mingming, du jinkun, peng huiru, rossi vincenzo, sun qixin, ni zhongfu, yao yingyin Dryad Digital Repository 2016 Supplemental, Dataset [(0, 0.87141), (1, 0.0142872), (2, 0.014290962), (3, 0.014288103), (4, 0.014287115), (5, 0.014287165), (6, 0.014287392), (7, 0.014287283), (8, 0.014287304), (9, 0.014287489)]
huaqiang bai 10591 Huaqiang Bai 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/290 zhixiong zhou, liu bo, baohua chen, shi yue, pu fei, leibin li, xu peng figshare 2019 Metadata, record, sequence, assembly, Takifugu, bimaculatus, genome, using, PacBio, technologies [(0, 0.31403518), (1, 0.004765449), (2, 0.004767349), (3, 0.0047654244), (4, 0.05541822), (5, 0.004765057), (6, 0.0047658132), (7, 0.0047651967), (8, 0.5971871), (9, 0.0047652577)]
huaqiang bai 10976 Huaqiang Bai 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/467 zhixiong zhou, baohua chen, pu fei, xu peng, qiaozhen ke, yidi wu figshare 2019 Metadata, record, sequencing, assembly, Larimichthys, crocea, genome, using, PacBio, technologies [(0, 0.47701868), (1, 0.004002832), (2, 0.004003983), (3, 0.004002701), (4, 0.045470536), (5, 0.004002578), (6, 0.004003187), (7, 0.0040027876), (8, 0.44949004), (9, 0.00400268)]
hudmon andy 10008 Hudmon Andy 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/6 bouchut anne, r. chawla aarti, jeffers victoria, j. sullivan jr. william Dryad Digital Repository 2015 files [(0, 0.16967253), (1, 0.004352842), (2, 0.004354036), (3, 0.0043527065), (4, 0.0043533035), (5, 0.0043523936), (6, 0.004353722), (7, 0.7955036), (8, 0.0043524876), (9, 0.0043523554)]
huffman g. j. 10195 Huffman G. J. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/119 bolvin d. t., nelkin e. j., adler r. f. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 Version, Combined, Precipitation [(0, 0.0005750675), (1, 0.00057512365), (2, 0.00057504704), (3, 0.015637718), (4, 0.0262197), (5, 0.14349507), (6, 0.00057506375), (7, 0.7978044), (8, 0.000575174), (9, 0.013967618)]
hulsmans jo 10609 Hulsmans Jo 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/299 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.06490304), (1, 0.1070259), (2, 0.18610051), (3, 0.3643822), (4, 0.0011773852), (5, 0.0011773492), (6, 0.0011774445), (7, 0.0011774695), (8, 0.27170125), (9, 0.0011774856)]
hulsmans jo 10690 Hulsmans Jo https://www.aifb.kit.edu/web/DSKG/dataset/351 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.0024406072), (1, 0.0024404959), (2, 0.48463523), (3, 0.3690657), (4, 0.0024402626), (5, 0.0024400789), (6, 0.0024400258), (7, 0.0024401515), (8, 0.12921718), (9, 0.0024402505)]
humbs martin 10191 Humbs Martin 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/115 fichter andreas, mucke thomas, ritschl lucas, luppa peter, wolff klaus-dietrich Dryad Digital Repository 2016 Minimal, dataset [(0, 0.0027062823), (1, 0.3120456), (2, 0.0027061522), (3, 0.002705297), (4, 0.0027060604), (5, 0.002705573), (6, 0.66630715), (7, 0.002706259), (8, 0.002705882), (9, 0.0027057636)]
humphrey vincent 10642 Humphrey Vincent 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/316 ghiggi gionata, gudmundsson lukas figshare 2019 Global, Runoff, Reconstruction [(0, 0.0012667561), (1, 0.049627453), (2, 0.0012666767), (3, 0.0012665575), (4, 0.0012667438), (5, 0.0012668476), (6, 0.0012668843), (7, 0.66382563), (8, 0.0012667908), (9, 0.2776797)]
humphrey vincent 10645 Humphrey Vincent 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/320 gudmundsson lukas Figshare 2019 GRACE-REC:, reconstruction, climate-driven, water, storage, changes, century [(0, 0.01652102), (1, 0.00033131274), (2, 0.00033127522), (3, 0.0003312709), (4, 0.00033128803), (5, 0.0003313322), (6, 0.0003312877), (7, 0.9808285), (8, 0.00033135244), (9, 0.0003312992)]
hunt gene 10931 Hunt Gene 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/452 yasuhara moriaki, iwatani hokuto, okahashi hisayo, kase tomoki, hayashi hiroki, irizuki toshiaki, yolanda m., fernando allan gil s., renema willem Dryad Digital Repository 2016 Modern, dataset [(0, 0.006672621), (1, 0.0066716587), (2, 0.0066717216), (3, 0.0066711693), (4, 0.93995297), (5, 0.0066711684), (6, 0.0066711684), (7, 0.0066744406), (8, 0.0066717444), (9, 0.0066713416)]
huntenburg julia m 10522 Huntenburg Julia M 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/268 2016 cortical, surface-based, geodesic, distance, package, Python [(0, 0.00038199287), (1, 0.00038197826), (2, 0.00038197197), (3, 0.00038196286), (4, 0.00038196507), (5, 0.00038198775), (6, 0.00038199572), (7, 0.0003819894), (8, 0.99656224), (9, 0.00038198303)]
hurd catriona l 10063 Hurd Catriona L 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/33 noisette fanny PANGAEA - Data Publisher for Earth & Environmental Science 2018 Chlorophyll, Chlorophyll [(0, 0.0016687313), (1, 0.14204013), (2, 0.0016686523), (3, 0.03797855), (4, 0.0016684979), (5, 0.0016689851), (6, 0.5416166), (7, 0.13660572), (8, 0.13341567), (9, 0.0016684531)]
hyett nicole 11051 Hyett Nicole 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
hyndman rob 10032 Hyndman Rob 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/19 sevvandi kandanaarachchi, acosta mario munoz, smith-miles kate Figshare 2019 Datasets, outlier, detection [(0, 0.0034495848), (1, 0.0034501392), (2, 0.0034499795), (3, 0.0034500107), (4, 0.0034493), (5, 0.6159075), (6, 0.003449544), (7, 0.0594201), (8, 0.30052397), (9, 0.0034498975)]
i. v. litvinyuk 10954 I. V. LITVINYUK https://www.aifb.kit.edu/web/DSKG/dataset/455 kavya h. rao, r. t. sang Figshare 2018 Visualization [(0, 0.0017877062), (1, 0.6509667), (2, 0.001787692), (3, 0.02389744), (4, 0.0017876548), (5, 0.0017876598), (6, 0.0017879521), (7, 0.19762024), (8, 0.11678924), (9, 0.0017877325)]
ijima osamu 11052 Ijima Osamu 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
imbert eric 10203 Imbert Eric 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/122 jovanovic sanja manitasevic, budecevic sanja, wang hui, sapir yuval Dryad Digital Repository 2017 species [(0, 0.011115212), (1, 0.42883363), (2, 0.48224837), (3, 0.011114705), (4, 0.01111513), (5, 0.011114033), (6, 0.011115797), (7, 0.011114493), (8, 0.011114194), (9, 0.011114448)]
ionas kelepouris 11080 Ionas Kelepouris 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/511 Laptop, Prices [(0, 0.28244287), (1, 0.0031268606), (2, 0.10182667), (3, 0.0031261607), (4, 0.003126984), (5, 0.20386742), (6, 0.0031261058), (7, 0.0031276958), (8, 0.3931022), (9, 0.0031270375)]
irizuki toshiaki 10935 Irizuki Toshiaki 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/452 yasuhara moriaki, iwatani hokuto, hunt gene, okahashi hisayo, kase tomoki, hayashi hiroki, yolanda m., fernando allan gil s., renema willem Dryad Digital Repository 2016 Modern, dataset [(0, 0.006672621), (1, 0.0066716587), (2, 0.0066717216), (3, 0.0066711693), (4, 0.93995297), (5, 0.0066711684), (6, 0.0066711684), (7, 0.0066744406), (8, 0.0066717444), (9, 0.0066713416)]
iwatani hokuto 10930 Iwatani Hokuto 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/452 yasuhara moriaki, hunt gene, okahashi hisayo, kase tomoki, hayashi hiroki, irizuki toshiaki, yolanda m., fernando allan gil s., renema willem Dryad Digital Repository 2016 Modern, dataset [(0, 0.006672621), (1, 0.0066716587), (2, 0.0066717216), (3, 0.0066711693), (4, 0.93995297), (5, 0.0066711684), (6, 0.0066711684), (7, 0.0066744406), (8, 0.0066717444), (9, 0.0066713416)]
j. anderson andrew 11101 J. Anderson Andrew 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/521 p. broderick michael, di liberto giovanni m., crosse michael j., c. lalor edmund Dryad Digital Repository 2018 Natural, Speech, Dataset [(0, 0.006258076), (1, 0.20466216), (2, 0.006258722), (3, 0.3663062), (4, 0.0062574036), (5, 0.17043236), (6, 0.13698627), (7, 0.006257527), (8, 0.0903242), (9, 0.006257092)]
j. p. de magalhaes 11289 J. P. de Magalhaes 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/2110 d. barardo, r. tacutu, e. johnson, e. diana, g. lehmann, v. e. fraifeld, d. toren, j. wang, t. craig, a. budovsky, d. thornton 2018 AnAge [(0, 0.020003892), (1, 0.4200142), (2, 0.020003803), (3, 0.020003935), (4, 0.020003803), (5, 0.020003803), (6, 0.020003803), (7, 0.020003803), (8, 0.41995516), (9, 0.020003803)]
j. sullivan jr. william 10009 J. Sullivan Jr. William 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/6 bouchut anne, r. chawla aarti, jeffers victoria, hudmon andy Dryad Digital Repository 2015 files [(0, 0.16967253), (1, 0.004352842), (2, 0.004354036), (3, 0.0043527065), (4, 0.0043533035), (5, 0.0043523936), (6, 0.004353722), (7, 0.7955036), (8, 0.0043524876), (9, 0.0043523554)]
j. wang 11293 J. Wang 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/2110 d. barardo, r. tacutu, e. johnson, e. diana, j. p. de magalhaes, g. lehmann, v. e. fraifeld, d. toren, t. craig, a. budovsky, d. thornton 2018 AnAge [(0, 0.020003892), (1, 0.4200142), (2, 0.020003803), (3, 0.020003935), (4, 0.020003803), (5, 0.020003803), (6, 0.020003803), (7, 0.020003803), (8, 0.41995516), (9, 0.020003803)]
jacobi sarah k. 10667 Jacobi Sarah K. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/337 larkin daniel j., l. hipp andrew, kattge jens, prescott william, tonietto rebecca k., bowles marlin l. Dryad Digital Repository 2015 Community, phylogeny [(0, 0.27219525), (1, 0.6049329), (2, 0.0055617527), (3, 0.0055603785), (4, 0.0055585047), (5, 0.00555856), (6, 0.005558599), (7, 0.0055593955), (8, 0.08395417), (9, 0.0055605303)]
jacobs bonnie fine 10784 Jacobs Bonnie Fine 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/398 2017 pollen, dataset [(0, 0.025001692), (1, 0.025001649), (2, 0.025001159), (3, 0.025001159), (4, 0.025001457), (5, 0.025002118), (6, 0.7749847), (7, 0.025001703), (8, 0.025002616), (9, 0.025001733)]
jacobs grant h. 11140 Jacobs Grant H. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/545 peter a., warren p., chris m. Figshare 2011 available, species [(0, 0.16329685), (1, 0.30450198), (2, 0.001888647), (3, 0.04486971), (4, 0.0018884878), (5, 0.0018887892), (6, 0.0018884197), (7, 0.36945665), (8, 0.108431995), (9, 0.0018884961)]
jaillard benoit 10373 Jaillard Benoît 33923547 https://www.aifb.kit.edu/web/DSKG/dataset/216 violle cyrille Dryad Digital Repository 2017 R-code, datasets [(0, 0.004353234), (1, 0.0043524867), (2, 0.004352574), (3, 0.004352346), (4, 0.0043523945), (5, 0.004352433), (6, 0.004352502), (7, 0.22261591), (8, 0.7425633), (9, 0.0043528373)]
jaime harris 11246 Jaime Harris 144024400 https://www.aifb.kit.edu/web/DSKG/dataset/2041 roger finke, sarah montminy, robert r. martin 2011 Cross-National, Socio-Economic, Religion, Data, [(0, 0.03333674), (1, 0.03333674), (2, 0.03334013), (3, 0.03333674), (4, 0.03333674), (5, 0.03333674), (6, 0.3666756), (7, 0.3666271), (8, 0.03333674), (9, 0.03333674)]
jake waitze 11163 Jake Waitze 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/564 PANGAEA - Data Publisher for Earth & Environmental Science 2003 Periodic, table, elements [(0, 0.00074677606), (1, 0.9676852), (2, 0.0007467394), (3, 0.017899275), (4, 0.000746874), (5, 0.0007467432), (6, 0.009187967), (7, 0.0007467973), (8, 0.0007468212), (9, 0.0007467979)]
james a. davis 11252 James A. Davis 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/2043 peter v. marsden, tom w. smith 1993 General, Social, Survey, [(0, 0.050000846), (1, 0.05000363), (2, 0.050000846), (3, 0.050000846), (4, 0.050000846), (5, 0.050000846), (6, 0.5499853), (7, 0.050005134), (8, 0.050000846), (9, 0.050000846)]
james a. davis 11255 James A. Davis 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/2044 peter v. marsden, tom w. smith 1994 General, Social, Survey, [(0, 0.05000085), (1, 0.050003633), (2, 0.05000085), (3, 0.05000085), (4, 0.05000085), (5, 0.05000085), (6, 0.5499853), (7, 0.050005138), (8, 0.05000085), (9, 0.05000085)]
james a. davis 11257 James A. Davis 15744967, 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/2045 tom w. smith 1996 General, Social, Survey, [(0, 0.050000846), (1, 0.05000363), (2, 0.050000846), (3, 0.050000846), (4, 0.050000846), (5, 0.050000846), (6, 0.5499853), (7, 0.050005134), (8, 0.050000846), (9, 0.050000846)]
james a. davis 11260 James A. Davis 144024400 https://www.aifb.kit.edu/web/DSKG/dataset/2046 peter v. marsden, tom w. smith 2002 General, Social, Survey, [(0, 0.050000846), (1, 0.05000363), (2, 0.050000846), (3, 0.050000846), (4, 0.050000846), (5, 0.050000846), (6, 0.5499853), (7, 0.050005138), (8, 0.050000846), (9, 0.050000846)]
james a. davis 11263 James A. Davis 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/2047 peter v. marsden, tom w. smith 2004 General, Social, Survey, [(0, 0.050000846), (1, 0.05000363), (2, 0.050000846), (3, 0.050000846), (4, 0.050000846), (5, 0.050000846), (6, 0.5499853), (7, 0.050005134), (8, 0.050000846), (9, 0.050000846)]
james a. davis 11266 James A. Davis 144024400, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2048 peter v. marsden, tom w. smith 2006 General, Social, Survey, [(0, 0.050000846), (1, 0.05000363), (2, 0.050000846), (3, 0.050000846), (4, 0.050000846), (5, 0.050000846), (6, 0.5499853), (7, 0.050005134), (8, 0.050000846), (9, 0.050000846)]
james h. billington 11195 James H. Billington 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/673 World, Digital, Library [(0, 0.025000459), (1, 0.025001388), (2, 0.7749932), (3, 0.025000459), (4, 0.025001276), (5, 0.02500097), (6, 0.025000459), (7, 0.025000881), (8, 0.025000459), (9, 0.025000459)]
james murray 11193 James Murray 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/608 john simpson, edmund weiner Oxford University Press 1989 Oxford, English, Dictionary [(0, 0.03333354), (1, 0.033333898), (2, 0.03333354), (3, 0.03333354), (4, 0.6999975), (5, 0.033333864), (6, 0.03333354), (7, 0.03333354), (8, 0.03333354), (9, 0.03333354)]
james w. 11153 James W. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/554 stone daphne f., anderson frances l., lendemer james c. Dryad Digital Repository 2016 data_packet [(0, 0.0033349076), (1, 0.0033349362), (2, 0.0033355476), (3, 0.6295609), (4, 0.0033348904), (5, 0.0033348019), (6, 0.0033359097), (7, 0.0033350228), (8, 0.34375814), (9, 0.0033349448)]
jan povala 10806 Jan Povala 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/407 London, Crime [(0, 0.033334445), (1, 0.033339832), (2, 0.03333615), (3, 0.033334445), (4, 0.033335984), (5, 0.03333671), (6, 0.033334445), (7, 0.69997394), (8, 0.033335872), (9, 0.03333817)]
janell 10627 Janell 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/304 lok wun chao Sharing [(0, 0.009093785), (1, 0.32825953), (2, 0.009093278), (3, 0.00909428), (4, 0.0090935305), (5, 0.009093685), (6, 0.009093017), (7, 0.009095924), (8, 0.009093772), (9, 0.5989892)]
javal marion 10651 Javal Marion 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/332 courtin claudine, kerdelhue carole, lombaert eric, tsykun tetyana, prospero simone, roques alain, roux geraldine Figshare 2019 Microsatellites, dataset [(0, 0.010009417), (1, 0.010015825), (2, 0.010018505), (3, 0.010009823), (4, 0.010009417), (5, 0.010009417), (6, 0.010009825), (7, 0.010010399), (8, 0.010009417), (9, 0.9098979)]
jean marc 10049 Jean Marc 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/31 couloux arnaud, wincker patrick, noel benjamin, cruaud corinne, da silva corinne, lemainque arnaud, dutreux fabien', lapalu nicolas, linglin juliette, rouxel thierry, balesdent marie-helene Figshare 2018 Genomic, datasets [(0, 0.8874455), (1, 0.012505132), (2, 0.012504966), (3, 0.012509499), (4, 0.012504909), (5, 0.012505869), (6, 0.012506899), (7, 0.012505305), (8, 0.0125064375), (9, 0.012505492)]
jean-charles lambert 10436 Jean-Charles Lambert 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/234 Figshare 2019 summary, statistics [(0, 0.0041698148), (1, 0.34286675), (2, 0.21067108), (3, 0.004168908), (4, 0.0041680876), (5, 0.004168152), (6, 0.087925635), (7, 0.33352327), (8, 0.004169081), (9, 0.0041692555)]
jeandavid blanc 11190 JeanDavid Blanc https://www.aifb.kit.edu/web/DSKG/dataset/600 AlloCiné [(0, 0.050003223), (1, 0.05000707), (2, 0.050005805), (3, 0.050001625), (4, 0.050004598), (5, 0.05000788), (6, 0.54994106), (7, 0.050014418), (8, 0.05000983), (9, 0.050004482)]
jeffers victoria 10007 Jeffers Victoria 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/6 bouchut anne, r. chawla aarti, hudmon andy, j. sullivan jr. william Dryad Digital Repository 2015 files [(0, 0.16967253), (1, 0.004352842), (2, 0.004354036), (3, 0.0043527065), (4, 0.0043533035), (5, 0.0043523936), (6, 0.004353722), (7, 0.7955036), (8, 0.0043524876), (9, 0.0043523554)]
jeffery mairi louise 11156 Jeffery Mairi Louise 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/555 gutschow johannes, gieseke robert, gebel ronja GFZ Data Services 2018 PRIMAP-crf:, UNFCCC, categories [(0, 0.00093484606), (1, 0.000934935), (2, 0.00093482033), (3, 0.0009348942), (4, 0.00093485555), (5, 0.0009348764), (6, 0.00093484996), (7, 0.9915861), (8, 0.00093494507), (9, 0.00093490136)]
jenkins dafyd j. 10607 Jenkins Dafyd J. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/299 nigel j., gifford miriam l., walker liam, boddington claire, wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.06490304), (1, 0.1070259), (2, 0.18610051), (3, 0.3643822), (4, 0.0011773852), (5, 0.0011773492), (6, 0.0011774445), (7, 0.0011774695), (8, 0.27170125), (9, 0.0011774856)]
jenkins dafyd j. 10688 Jenkins Dafyd J. https://www.aifb.kit.edu/web/DSKG/dataset/351 nigel j., gifford miriam l., walker liam, boddington claire, wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.0024406072), (1, 0.0024404959), (2, 0.48463523), (3, 0.3690657), (4, 0.0024402626), (5, 0.0024400789), (6, 0.0024400258), (7, 0.0024401515), (8, 0.12921718), (9, 0.0024402505)]
jia bingrui 10908 Jia Bingrui 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/438 zhou guangsheng PANGAEA - Data Publisher for Earth & Environmental Science 2017 Growth, characteristics, Dahurian, larch, (Larix, gmelinii), northeast, China, during, 1965-2015,, supplement, Bingrui;, Zhou,, Guangsheng, (2018):, Growth, characteristics, natural, planted, Dahurian, larch, northeast, China., Earth, System, Science, Data,, 10(2),, 893-898 [(0, 0.0012205476), (1, 0.069009356), (2, 0.0012206751), (3, 0.0012204619), (4, 0.0012205483), (5, 0.0012207255), (6, 0.0012207978), (7, 0.116595715), (8, 0.8058503), (9, 0.0012208326)]
jin xiaoye 10906 Jin Xiaoye 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/436 guo yuxin, chen chong, xie tong, cui wei, meng haotian, zhu bofeng Dryad Digital Repository 2018 RAW_DATA [(0, 0.24413738), (1, 0.10899984), (2, 0.27884537), (3, 0.0019253815), (4, 0.35646468), (5, 0.001925676), (6, 0.0019252333), (7, 0.001925537), (8, 0.0019255829), (9, 0.0019253182)]
jingli yang 10776 Jingli Yang 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/395 wang jing, kean laura, allan adrian k, shireen a, herzyk pawel, dow julian Figshare 2011 phenotype [(0, 0.93111986), (1, 0.0033351902), (2, 0.04220043), (3, 0.0033347197), (4, 0.0033348387), (5, 0.0033347732), (6, 0.0033351888), (7, 0.0033348722), (8, 0.0033352363), (9, 0.003334876)]
john d 11165 John D 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/566 Passenger, Satisfaction [(0, 0.0010640632), (1, 0.0010641234), (2, 0.0010640268), (3, 0.9904233), (4, 0.001064062), (5, 0.0010640393), (6, 0.0010640596), (7, 0.0010640324), (8, 0.0010641767), (9, 0.0010640802)]
john simpson 11191 John Simpson 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/608 edmund weiner, james murray Oxford University Press 1989 Oxford, English, Dictionary [(0, 0.03333354), (1, 0.033333898), (2, 0.03333354), (3, 0.03333354), (4, 0.6999975), (5, 0.033333864), (6, 0.03333354), (7, 0.03333354), (8, 0.03333354), (9, 0.03333354)]
john sumerel 10467 John Sumerel https://www.aifb.kit.edu/web/DSKG/dataset/248 draft [(0, 0.004349823), (1, 0.2973049), (2, 0.004349683), (3, 0.0043500755), (4, 0.004352388), (5, 0.0043497034), (6, 0.0043501263), (7, 0.004349949), (8, 0.0043498324), (9, 0.6678935)]
john w. h. 10700 John W. H. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/354 rambaut andrew, thomas jessica a., welch john j. Dryad Digital Repository 2013 Dataset2 [(0, 0.050024), (1, 0.05000145), (2, 0.5499396), (3, 0.050001442), (4, 0.05000185), (5, 0.050003354), (6, 0.050002992), (7, 0.05000613), (8, 0.05000627), (9, 0.05001292)]
johnson jessica s. 10415 Johnson Jessica S. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
johnston alice s. a. 11172 Johnston Alice S. A. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/572 richard m. Dryad Digital Repository 2018 Dataset, References [(0, 0.0035736123), (1, 0.003573654), (2, 0.0035739962), (3, 0.0035733148), (4, 0.0035733047), (5, 0.0035730985), (6, 0.14215611), (7, 0.8292562), (8, 0.003573332), (9, 0.003573398)]
jonathon green 11227 Jonathon Green 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/1698 Chambers Harrap 2016 Green's, Dictionary, Slang [(0, 0.050001513), (1, 0.050014243), (2, 0.050001513), (3, 0.050001513), (4, 0.54996455), (5, 0.050001513), (6, 0.050009474), (7, 0.050002664), (8, 0.050001513), (9, 0.050001513)]
jones p. d. 10540 Jones P. D. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
jones philip d. 10497 Jones Philip D. 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
jong maarten de 10306 Jong Maarten De 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/185 chen wei, geerlings henry, asta mark, persson kristin Figshare 2018 Piezoelectric, Tensor [(0, 0.003704297), (1, 0.0037044964), (2, 0.0037042042), (3, 0.96666), (4, 0.003704217), (5, 0.0037043015), (6, 0.0037044443), (7, 0.003704447), (8, 0.003704843), (9, 0.0037047495)]
jong maarten de 10809 Jong Maarten De https://www.aifb.kit.edu/web/DSKG/dataset/410 chen wei, asta mark, persson kristin, angsten thomas, notestine randy, gamst anthony, sluiter marcel, chaitanya krishna ande, sybrand van der, plata jose j., toher cormac, curtarolo stefano, ceder gerbrand Figshare 2018 Elastic, Tensor [(0, 0.0025006267), (1, 0.0025008286), (2, 0.0025004984), (3, 0.9774937), (4, 0.002500651), (5, 0.0025005413), (6, 0.0025006502), (7, 0.0025006433), (8, 0.0025011175), (9, 0.002500725)]
jonsson t. 10541 Jonsson T. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
joost hazelzet 10035 Joost Hazelzet 41008148, 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/22 Images, Bricks [(0, 0.0016403584), (1, 0.9147905), (2, 0.0016405236), (3, 0.0016403318), (4, 0.001640529), (5, 0.0016403787), (6, 0.0016404525), (7, 0.0016404933), (8, 0.07208586), (9, 0.001640578)]
jost anne 10638 Jost Anne 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/314 tootchi ardalan, ducharne agnes PANGAEA - Data Publisher for Earth & Environmental Science 2018 Multi-source, global, wetland, combining, surface, water, imagery, groundwater, constraints [(0, 0.00056529377), (1, 0.0005653265), (2, 0.0005653056), (3, 0.0005652512), (4, 0.00056526874), (5, 0.000565264), (6, 0.018347021), (7, 0.9771306), (8, 0.00056537084), (9, 0.00056529103)]
jourdain s., 10542 Jourdain S., 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
jourdain sylvie 10498 Jourdain Sylvie 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
jovanovic sanja manitasevic 10199 Jovanović Sanja Manitašević 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/122 budecevic sanja, wang hui, sapir yuval, imbert eric Dryad Digital Repository 2017 species [(0, 0.011115212), (1, 0.42883363), (2, 0.48224837), (3, 0.011114705), (4, 0.01111513), (5, 0.011114033), (6, 0.011115797), (7, 0.011114493), (8, 0.011114194), (9, 0.011114448)]
jules bergis 10001 Jules Bergis 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/3 2017 #Charlottesville [(0, 0.0038496589), (1, 0.0038512025), (2, 0.003849954), (3, 0.003849897), (4, 0.0038497916), (5, 0.042918656), (6, 0.0038497217), (7, 0.0038503653), (8, 0.0038510896), (9, 0.92627966)]
jules bergis 10519 Jules Bergis 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/266 2019 Aretha, Franklin [(0, 0.0026351963), (1, 0.07818459), (2, 0.0026351933), (3, 0.0026354082), (4, 0.002635518), (5, 0.15381913), (6, 0.060402613), (7, 0.002635613), (8, 0.69178146), (9, 0.002635303)]
jurisica igor 10912 Jurisica Igor 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/440 brown kevin r Figshare 2011 Properties, networks [(0, 0.7596975), (1, 0.23098882), (2, 0.0011640837), (3, 0.0011642361), (4, 0.0011640143), (5, 0.0011640182), (6, 0.0011640941), (7, 0.0011644895), (8, 0.0011642799), (9, 0.0011645083)]
k. 11232 K. 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/1873 sebastien, erik, kouwenhoven, vincent, kun, frolov, plissard, zuo Research Data, 4TU.Centre 2012 Signatures, Majorana, fermions, hybrid, superconductor-semiconductor, nanowire, devices [(0, 0.020003892), (1, 0.020003892), (2, 0.020003892), (3, 0.020003892), (4, 0.020003892), (5, 0.020003892), (6, 0.81996495), (7, 0.020003892), (8, 0.020003892), (9, 0.020003892)]
k. lee ernest 11004 K. Lee Ernest 95457728, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/482 borowiec marek l., c. chiu joanna, c. plachetzki david Dryad Digital Repository 2015 RAxML, Concatenated [(0, 0.004349888), (1, 0.0043510166), (2, 0.9608475), (3, 0.0043499633), (4, 0.004349839), (5, 0.0043508336), (6, 0.0043499656), (7, 0.004350564), (8, 0.0043499204), (9, 0.0043505062)]
kadi adnan 10916 Kadi Adnan 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/446 hany, attwa mohamed Dryad Digital Repository 2018 [(0, 0.011121234), (1, 0.011119265), (2, 0.011124099), (3, 0.011119536), (4, 0.011118562), (5, 0.011119082), (6, 0.011133998), (7, 0.011119686), (8, 0.01111952), (9, 0.899905)]
kallis ain 11053 Kallis Ain 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
kan erik 11082 Kan Erik 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/515 anglin julia, borich michael, thompson paul 2016 Facilitating, meta-analyses, clinical, neuroimaging, through, ENIGMA, wrapper, scripts [(0, 0.26658294), (1, 0.2580177), (2, 0.06263722), (3, 0.000776), (4, 0.0007760189), (5, 0.000775976), (6, 0.0007760049), (7, 0.009509435), (8, 0.39937264), (9, 0.00077607424)]
kaplan nils hinrich 10706 Kaplan Nils Hinrich 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/358 weiler markus GFZ Data Services 2019 series, streamflow, occurrence, sites, ephemeral,, intermittent, perennial, streams, Attert, catchment,, Luxembourg [(0, 0.000690281), (1, 0.000690359), (2, 0.00069029303), (3, 0.00069028593), (4, 0.31844574), (5, 0.00069029775), (6, 0.00069031824), (7, 0.46522272), (8, 0.21149945), (9, 0.00069028867)]
kapulu melissa c. 10961 Kapulu Melissa C. 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/459 p. goncalves bronner Dryad Digital Repository 2017 Membrane, feeding, assays [(0, 0.0040010163), (1, 0.0040014833), (2, 0.004001601), (3, 0.7769031), (4, 0.0040016016), (5, 0.004001), (6, 0.19108531), (7, 0.004001572), (8, 0.0040020025), (9, 0.004001353)]
karrenberg sophie 10571 Karrenberg Sophie 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/275 Dryad Digital Repository 2018 Transplant, experiment [(0, 0.0015633056), (1, 0.0015633646), (2, 0.98592967), (3, 0.0015632793), (4, 0.0015636255), (5, 0.0015632635), (6, 0.0015631984), (7, 0.0015633609), (8, 0.0015635545), (9, 0.0015633962)]
kase tomoki 10933 Kase Tomoki 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/452 yasuhara moriaki, iwatani hokuto, hunt gene, okahashi hisayo, hayashi hiroki, irizuki toshiaki, yolanda m., fernando allan gil s., renema willem Dryad Digital Repository 2016 Modern, dataset [(0, 0.006672621), (1, 0.0066716587), (2, 0.0066717216), (3, 0.0066711693), (4, 0.93995297), (5, 0.0066711684), (6, 0.0066711684), (7, 0.0066744406), (8, 0.0066717444), (9, 0.0066713416)]
katkov mikhail 10341 Katkov Mikhail 86803240, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/198 lerner yulia, scherf k. suzy, hasson uri, behrmann marlene Figshare 2018 Developmental, trajectories, brain, development [(0, 0.0021756173), (1, 0.0021761425), (2, 0.0021760834), (3, 0.002175505), (4, 0.0021757244), (5, 0.0021765279), (6, 0.002175662), (7, 0.0021755423), (8, 0.9804178), (9, 0.0021754322)]
kattge jens 10664 Kattge Jens 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/337 larkin daniel j., l. hipp andrew, prescott william, tonietto rebecca k., jacobi sarah k., bowles marlin l. Dryad Digital Repository 2015 Community, phylogeny [(0, 0.27219525), (1, 0.6049329), (2, 0.0055617527), (3, 0.0055603785), (4, 0.0055585047), (5, 0.00555856), (6, 0.005558599), (7, 0.0055593955), (8, 0.08395417), (9, 0.0055605303)]
kavya h. rao 10953 KAVYA H. RAO https://www.aifb.kit.edu/web/DSKG/dataset/455 i. v. litvinyuk, r. t. sang Figshare 2018 Visualization [(0, 0.0017877062), (1, 0.6509667), (2, 0.001787692), (3, 0.02389744), (4, 0.0017876548), (5, 0.0017876598), (6, 0.0017879521), (7, 0.19762024), (8, 0.11678924), (9, 0.0017877325)]
kean laura 10775 Kean Laura 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/395 wang jing, jingli yang, allan adrian k, shireen a, herzyk pawel, dow julian Figshare 2011 phenotype [(0, 0.93111986), (1, 0.0033351902), (2, 0.04220043), (3, 0.0033347197), (4, 0.0033348387), (5, 0.0033347732), (6, 0.0033351888), (7, 0.0033348722), (8, 0.0033352363), (9, 0.003334876)]
keeve nachman 11139 Keeve Nachman 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/543 sheingate adam, martin robert Figshare 2017 Lobbying [(0, 0.0030334522), (1, 0.8670555), (2, 0.003032308), (3, 0.0030322743), (4, 0.0030326443), (5, 0.0030332196), (6, 0.0030325148), (7, 0.0030329812), (8, 0.10868253), (9, 0.0030326333)]
keller lukas 10963 Keller Lukas 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/461 brambilla alice, bassano bruno, grossen christine Dryad Digital Repository 2017 heterozygosity-fitness [(0, 0.0028594495), (1, 0.0028595387), (2, 0.0028591931), (3, 0.0028589326), (4, 0.0028587556), (5, 0.002858702), (6, 0.0028587976), (7, 0.9742685), (8, 0.0028594194), (9, 0.0028587575)]
kelly g. 10543 Kelly G. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
kennedy john 10485 Kennedy John 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
kerdelhue carole 10653 Kerdelhué Carole 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/332 javal marion, courtin claudine, lombaert eric, tsykun tetyana, prospero simone, roques alain, roux geraldine Figshare 2019 Microsatellites, dataset [(0, 0.010009417), (1, 0.010015825), (2, 0.010018505), (3, 0.010009823), (4, 0.010009417), (5, 0.010009417), (6, 0.010009825), (7, 0.010010399), (8, 0.010009417), (9, 0.9098979)]
keval m 10223 Keval M 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/137 Marketing, Dataset [(0, 0.002779656), (1, 0.0027801234), (2, 0.4211254), (3, 0.0027793574), (4, 0.0027803148), (5, 0.002779688), (6, 0.0027796815), (7, 0.0027804747), (8, 0.5566352), (9, 0.0027801082)]
kevin mader 10304 Kevin Mader 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/182 Mortality, Curves [(0, 0.0047633187), (1, 0.0047633345), (2, 0.004762784), (3, 0.004762796), (4, 0.004762967), (5, 0.004763566), (6, 0.0047630887), (7, 0.0047634095), (8, 0.004763741), (9, 0.95713097)]
kevin mader 10466 Kevin Mader 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/247 Nodule, Malignancy [(0, 0.0017262175), (1, 0.53569347), (2, 0.0017262792), (3, 0.0017260195), (4, 0.001726339), (5, 0.0017260518), (6, 0.0017264537), (7, 0.001726256), (8, 0.45049635), (9, 0.0017265425)]
kevin mader 10702 Kevin Mader https://www.aifb.kit.edu/web/DSKG/dataset/355 Finding, Measuring, Lungs [(0, 0.0016959839), (1, 0.6366201), (2, 0.0016961877), (3, 0.0016957284), (4, 0.0016959219), (5, 0.0016957573), (6, 0.0016958048), (7, 0.0016958145), (8, 0.3498129), (9, 0.0016958198)]
khassenova raykhan 10471 Khassenova Raykhan 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/250 saudabayev artur, varol atakan huseyin Figshare 2018 Dataset, Summary [(0, 0.00500522), (1, 0.005005442), (2, 0.6117068), (3, 0.0050045964), (4, 0.005005999), (5, 0.0050046807), (6, 0.0050046844), (7, 0.0050062765), (8, 0.3482488), (9, 0.005007466)]
khawaja nida z. 11024 Khawaja Nida Z. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/488 rippe john p., v. matz mikhail, medina monica, h. pinzon c. jorge, d. castillo karl, w. davies sarah Dryad Digital Repository 2017 Microsatellite, genotype [(0, 0.0050014686), (1, 0.0050021126), (2, 0.25499824), (3, 0.0050017047), (4, 0.005001192), (5, 0.005001265), (6, 0.005001028), (7, 0.0050018337), (8, 0.7049896), (9, 0.0050015687)]
kikuchi david 10523 Kikuchi David 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/269 navarro velez kimberly Dryad Digital Repository 2018 DataA1 [(0, 0.37319803), (1, 0.07065288), (2, 0.005564363), (3, 0.005565225), (4, 0.00556296), (5, 0.0055637364), (6, 0.0055633564), (7, 0.51720107), (8, 0.00556468), (9, 0.005563683)]
kim ahlstrom 11220 Kim Ahlström 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/1496 miwa ahlstrom Jisho [(0, 0.1), (1, 0.1), (2, 0.1), (3, 0.1), (4, 0.1), (5, 0.1), (6, 0.1), (7, 0.1), (8, 0.1), (9, 0.1)]
kim schreier 10438 Kim Schreier 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/236 Random, Forest [(0, 0.0013003013), (1, 0.09130075), (2, 0.0013004243), (3, 0.0013002948), (4, 0.001300478), (5, 0.0841441), (6, 0.0013004147), (7, 0.81545186), (8, 0.001300724), (9, 0.0013006304)]
kim sung young 11075 Kim Sung Young 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/505 Dryad Digital Repository 2016 Additional-data [(0, 0.0038498305), (1, 0.0038489727), (2, 0.0038487318), (3, 0.0038491434), (4, 0.0038489227), (5, 0.0038485783), (6, 0.47404358), (7, 0.0038495916), (8, 0.49516377), (9, 0.0038489078)]
kleoniki 10130 Kleoniki 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/82 aschonitis vassilis g, mastrocicco micol, ghirardini andrea, papamichail dimitris, colombani nicolo, castaldelli giuseppe, fano elisa-anna PANGAEA - Data Publisher for Earth & Environmental Science 2017 resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation,, links, ESRI-grid, files,, supplement, Aschonitis,, Vassilis, Papamichail,, Dimitris;, Demertzi,, Kleoniki;, Colombani,, Nicolo;, Mastrocicco,, Micol;, Ghirardini,, Andrea;, Castaldelli,, Giuseppe;, Fano,, Elisa-Anna, (2017):, High-resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation., Earth, System, Science, Data,, 9(2),, 615-638 [(0, 0.0005132323), (1, 0.0005132701), (2, 0.00051321497), (3, 0.00051319704), (4, 0.00051321386), (5, 0.0005132613), (6, 0.028460743), (7, 0.2619134), (8, 0.6910191), (9, 0.015527402)]
klok e.j. 10969 Klok E.J. 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/465 Figshare 2018 Bedroom, temperatures [(0, 0.83155626), (1, 0.042087365), (2, 0.0009908138), (3, 0.00099071), (4, 0.0009907715), (5, 0.000991171), (6, 0.0009907085), (7, 0.000990892), (8, 0.119420506), (9, 0.0009908119)]
knap wouter 11054 Knap Wouter 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
knapp k. r. 10544 Knapp K. R. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
knorr gregor 10371 Knorr Gregor 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/215 gowan evan j, niu lu, lohmann gerrit PANGAEA - Data Publisher for Earth & Environmental Science 2018 Geology, datasets, North, America,, Greenland, surrounding, areas, sheet, models,, supplement, Gowan,, Knorr,, Gregor;, Lohmann,, Gerrit, (2019):, Geology, datasets, North, America,, Greenland, surrounding, areas, sheet, models., Earth, System, Science, Data,, 11(1),, 375-391 [(0, 0.003228117), (1, 0.00322831), (2, 0.0032279082), (3, 0.0032286241), (4, 0.0032280716), (5, 0.0032279247), (6, 0.6288874), (7, 0.34528613), (8, 0.0032285403), (9, 0.0032289536)]
kochkina elena 10452 Kochkina Elena 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/242 derczynski leon, zubiaga arkaitz, gorrell genevieve, aker ahmet, bontcheva kalina, liakata maria Figshare 2019 RumourEval [(0, 0.0034522405), (1, 0.0034517262), (2, 0.0034515297), (3, 0.0034516058), (4, 0.63409746), (5, 0.0034525406), (6, 0.19449508), (7, 0.0034517439), (8, 0.14724432), (9, 0.00345177)]
kocot kevin 10669 Kocot Kevin 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/338 Figshare 2017 Analysis, complete, dataset [(0, 0.016678816), (1, 0.016675852), (2, 0.016676618), (3, 0.23296507), (4, 0.016675234), (5, 0.016674424), (6, 0.016673315), (7, 0.016674092), (8, 0.63363236), (9, 0.016674222)]
koech ramona 10763 Koech Ramona 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/390 legese mekuria, tobias fr de wit, spieker nicole, nyarango robert, ndwiga stanley, fenenga christine j. figshare 2019 Analyzing, digital, healthcare, exchange, platform, surveillance, antibiotic, prescriptions, primary, urban, Kenya:, mixed-methods, study [(0, 0.0090974895), (1, 0.009099293), (2, 0.009098916), (3, 0.009097519), (4, 0.009104664), (5, 0.009097751), (6, 0.009100963), (7, 0.9181042), (8, 0.009101116), (9, 0.009098127)]
kolawole olatunji matthew 10381 Kolawole Olatunji Matthew 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/223 borner janus, pick christian, thiede jenny, tanyi kingsley manchang, m. cottontail veronika, wellinghausen nele Dryad Digital Repository 2015 Concatenated, multigene, aignments [(0, 0.21523102), (1, 0.005003556), (2, 0.74474365), (3, 0.0050041066), (4, 0.005002706), (5, 0.0050027766), (6, 0.005002784), (7, 0.005003692), (8, 0.0050028167), (9, 0.005002891)]
konig-langlo gert 11041 König-Langlo Gert 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
kotagama sarath wimalabandara 10278 Kotagama Sarath Wimalabandara 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/162 chen jin, goodale uromi, sidhu swati, goodale eben Dryad Digital Repository 2015 Transect, database [(0, 0.18610847), (1, 0.21436661), (2, 0.0024411567), (3, 0.36698642), (4, 0.002440713), (5, 0.0024403601), (6, 0.00244038), (7, 0.0024407038), (8, 0.21789475), (9, 0.0024404053)]
kottmann renzo 10170 Kottmann Renzo 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/106 lombardot thierry, pfeffer hauke, richter michael, teeling hanno, frank oliver Figshare 2011 Genomes, Mapserver [(0, 0.728574), (1, 0.0032283089), (2, 0.0032278574), (3, 0.0032276625), (4, 0.003227962), (5, 0.0032298383), (6, 0.0032279433), (7, 0.0032280644), (8, 0.24560077), (9, 0.0032275543)]
kouwenhoven 11230 Kouwenhoven 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/1873 sebastien, erik, vincent, k., kun, frolov, plissard, zuo Research Data, 4TU.Centre 2012 Signatures, Majorana, fermions, hybrid, superconductor-semiconductor, nanowire, devices [(0, 0.020003892), (1, 0.020003892), (2, 0.020003892), (3, 0.020003892), (4, 0.020003892), (5, 0.020003892), (6, 0.81996495), (7, 0.020003892), (8, 0.020003892), (9, 0.020003892)]
kraemer andrew 10617 Kraemer Andrew 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/300 sherratt emma, serb jeanne, alejandrino alvin, adams dean c. Dryad Digital Repository 2016 [(0, 0.0066707563), (1, 0.00666956), (2, 0.93997175), (3, 0.0066694673), (4, 0.006669467), (5, 0.006669789), (6, 0.0066700955), (7, 0.0066696336), (8, 0.0066701327), (9, 0.0066693653)]
kramer robin 10419 Kramer Robin 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
krobel roland 10788 Kröbel Roland 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/399 masud mohammad badrul, mcallister tim, lelyk glenn, legesse getahun, faramarzi monireh PANGAEA - Data Publisher for Earth & Environmental Science 2017 Deriving, Canada-wide, soils, dataset, Water, Assessment, (SWAT),, supplement, Cordeiro,, Marcos, Lelyk,, Glenn;, Kröbel,, Roland;, Legesse,, Getahun;, Faramarzi,, Monireh;, Masud,, Mohammad, Badrul;, McAllister,, (2018):, Deriving, dataset, agriculturally, relevant, soils, Landscapes, Canada, (SLC), database, Water, Assessment, (SWAT), simulations., Earth, System, Science, Data,, 10(3),, 1673-1686 [(0, 0.002084727), (1, 0.0020848836), (2, 0.0020844473), (3, 0.0020843572), (4, 0.30710477), (5, 0.0020848878), (6, 0.0020846366), (7, 0.22581027), (8, 0.4524925), (9, 0.0020845437)]
kruger a. 10545 Kruger A. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
kubota hisayuki 10499 Kubota Hisayuki 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
kucuk ahmet 10285 Kucuk Ahmet 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/166 banda juan m., angryk rafal a. Figshare 2016 [(0, 0.0076974886), (1, 0.007698351), (2, 0.007697097), (3, 0.0076966723), (4, 0.0076972446), (5, 0.0076970905), (6, 0.007697165), (7, 0.19313358), (8, 0.74528885), (9, 0.007696475)]
kuik friderike 11128 Kuik Friderike 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/534 schmale julia, kutzner rebecca d, von schneidemesser erika, quedenau jorn, weatherhead betsy PANGAEA - Data Publisher for Earth & Environmental Science 2017 Black, Carbon, measurements, Germany, between, 2014,, netCDF, files,, supplement, Kutzner,, Rebecca, Schneidemesser,, Erika;, Kuik,, Friderike;, Quedenau,, Jörn;, Weatherhead,, Betsy;, Schmale,, Julia, (2018):, Long-term, monitoring, black, carbon, across, Germany., Atmospheric, Environment,, 41-52 [(0, 0.00053816754), (1, 0.12992172), (2, 0.17506847), (3, 0.0005381808), (4, 0.0066615767), (5, 0.00053821324), (6, 0.04955655), (7, 0.29004943), (8, 0.34658945), (9, 0.00053821853)]
kukkonen jyrki 11002 Kukkonen Jyrki 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/481 salome jenny von Figshare 2011 diversity [(0, 0.9878312), (1, 0.0013523068), (2, 0.0013519807), (3, 0.0013519679), (4, 0.0013520818), (5, 0.0013519601), (6, 0.0013518911), (7, 0.0013521168), (8, 0.0013524118), (9, 0.0013521132)]
kumar sanjeev 10610 Kumar Sanjeev 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/299 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.06490304), (1, 0.1070259), (2, 0.18610051), (3, 0.3643822), (4, 0.0011773852), (5, 0.0011773492), (6, 0.0011774445), (7, 0.0011774695), (8, 0.27170125), (9, 0.0011774856)]
kumar sanjeev 10691 Kumar Sanjeev https://www.aifb.kit.edu/web/DSKG/dataset/351 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.0024406072), (1, 0.0024404959), (2, 0.48463523), (3, 0.3690657), (4, 0.0024402626), (5, 0.0024400789), (6, 0.0024400258), (7, 0.0024401515), (8, 0.12921718), (9, 0.0024402505)]
kun 11233 Kun 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/1873 sebastien, erik, kouwenhoven, vincent, k., frolov, plissard, zuo Research Data, 4TU.Centre 2012 Signatures, Majorana, fermions, hybrid, superconductor-semiconductor, nanowire, devices [(0, 0.020003892), (1, 0.020003892), (2, 0.020003892), (3, 0.020003892), (4, 0.020003892), (5, 0.020003892), (6, 0.81996495), (7, 0.020003892), (8, 0.020003892), (9, 0.020003892)]
kustov vasilii 11055 Kustov Vasilii 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
kutzner rebecca d 11126 Kutzner Rebecca D 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/534 schmale julia, von schneidemesser erika, kuik friderike, quedenau jorn, weatherhead betsy PANGAEA - Data Publisher for Earth & Environmental Science 2017 Black, Carbon, measurements, Germany, between, 2014,, netCDF, files,, supplement, Kutzner,, Rebecca, Schneidemesser,, Erika;, Kuik,, Friderike;, Quedenau,, Jörn;, Weatherhead,, Betsy;, Schmale,, Julia, (2018):, Long-term, monitoring, black, carbon, across, Germany., Atmospheric, Environment,, 41-52 [(0, 0.00053816754), (1, 0.12992172), (2, 0.17506847), (3, 0.0005381808), (4, 0.0066615767), (5, 0.00053821324), (6, 0.04955655), (7, 0.29004943), (8, 0.34658945), (9, 0.00053821853)]
kyu-baek hwang 10710 Kyu-Baek Hwang 127413603, 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/361 greenberg steve a, peter j Figshare 2011 schematic, procedure [(0, 0.7178245), (1, 0.001962523), (2, 0.0019623917), (3, 0.0019620636), (4, 0.0019624752), (5, 0.0019620068), (6, 0.001962115), (7, 0.0019626576), (8, 0.2664768), (9, 0.001962491)]
l'ecuyer tristan s. 10319 L’Ecuyer Tristan S. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/193 mulmenstadt johannes, sourdeval odran, henderson david s., russell lynn m. World Data Center for Climate 2018 Using, CALIOP, estimate, cloud-field, height, uncertainty:, Cloud, Altitude, Spatial, Extrapolator, (CBASE), algorithm, dataset [(0, 0.0011245287), (1, 0.0011244992), (2, 0.0011243506), (3, 0.0011243452), (4, 0.0011243349), (5, 0.8128101), (6, 0.0011243607), (7, 0.17819458), (8, 0.0011245662), (9, 0.0011243491)]
l. hipp andrew 10663 L. Hipp Andrew 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/337 larkin daniel j., kattge jens, prescott william, tonietto rebecca k., jacobi sarah k., bowles marlin l. Dryad Digital Repository 2015 Community, phylogeny [(0, 0.27219525), (1, 0.6049329), (2, 0.0055617527), (3, 0.0055603785), (4, 0.0055585047), (5, 0.00555856), (6, 0.005558599), (7, 0.0055593955), (8, 0.08395417), (9, 0.0055605303)]
l. hipp andrew 11167 L. Hipp Andrew 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/569 mcvay john d., s. manos paul Dryad Digital Repository 2017 partition [(0, 0.011138602), (1, 0.011126235), (2, 0.011131733), (3, 0.011123711), (4, 0.011123377), (5, 0.011123332), (6, 0.011128142), (7, 0.89984226), (8, 0.011126928), (9, 0.01113562)]
lale allison 10140 Lale Allison https://www.aifb.kit.edu/web/DSKG/dataset/87 charbonneau amanda, tack david, goldston josh, caple mackenzie, conner emma, barazani oz, ziffer-berger jotham, dworkin ian, conner jeff Dryad Digital Repository 2018 [(0, 0.06347562), (1, 0.0052664205), (2, 0.44835892), (3, 0.005266149), (4, 0.0052664382), (5, 0.0052660224), (6, 0.005265994), (7, 0.451302), (8, 0.005266528), (9, 0.005265935)]
lamaze fabien c. 10345 Lamaze Fabien C. https://www.aifb.kit.edu/web/DSKG/dataset/201 scott a., normandeau eric, roy gabriel, garant dany Dryad Digital Repository 2014 [(0, 0.35711527), (1, 0.0035764824), (2, 0.29206797), (3, 0.32578537), (4, 0.0035753278), (5, 0.003576157), (6, 0.0035757662), (7, 0.0035761038), (8, 0.0035762836), (9, 0.0035752861)]
lamere paul 10254 Lamere Paul 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/150 whitman brian 2017 Million, Dataset [(0, 0.0025029965), (1, 0.28028598), (2, 0.0025026782), (3, 0.0025029911), (4, 0.002502953), (5, 0.0025031352), (6, 0.0025028605), (7, 0.04651229), (8, 0.4546415), (9, 0.2035426)]
langevin jared 10726 Langevin Jared 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/377 figshare 2019 Metadata, record, Longitudinal, dataset, human-building, interactions, offices [(0, 0.0045486167), (1, 0.004546622), (2, 0.0045465915), (3, 0.0045464695), (4, 0.004546433), (5, 0.0045475867), (6, 0.9590773), (7, 0.0045465087), (8, 0.0045471033), (9, 0.0045467517)]
lanini jessica 10075 Lanini Jessica 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/46 Figshare 2017 Interactive, Locomotion [(0, 0.3079268), (1, 0.11493465), (2, 0.0006718893), (3, 0.00067189545), (4, 0.0006719555), (5, 0.0006718999), (6, 0.0006719348), (7, 0.00067203474), (8, 0.52879316), (9, 0.044313792)]
lanucara simone 10803 Lanucara Simone 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/403 de falco giovanni, conforti alessandro, simeone simone, carrara paola PANGAEA - Data Publisher for Earth & Environmental Science 2018 Submerged, deposits, Western, Sardinia,, Mediterranean, organised, interoperable, Spatial, Infrastructure,, supplement, Brambilla,, Walter;, Conforti,, Alessandro;, Simeone,, Simone;, Carrara,, Paola;, Lanucara,, Simone;, Falco,, Giovanni, (2019):, submerged, deposits, organised, interoperable, spatial, infrastructure, (Western, Sardinia,, Mediterranean, Sea)., Earth, System, Science, Data,, 11(2),, 515-527 [(0, 0.0007885664), (1, 0.52333206), (2, 0.011065678), (3, 0.008872817), (4, 0.00078854547), (5, 0.0007885023), (6, 0.0007885604), (7, 0.14595369), (8, 0.22973014), (9, 0.07789147)]
lapalu nicolas 10055 Lapalu Nicolas 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/31 couloux arnaud, wincker patrick, jean marc, noel benjamin, cruaud corinne, da silva corinne, lemainque arnaud, dutreux fabien', linglin juliette, rouxel thierry, balesdent marie-helene Figshare 2018 Genomic, datasets [(0, 0.8874455), (1, 0.012505132), (2, 0.012504966), (3, 0.012509499), (4, 0.012504909), (5, 0.012505869), (6, 0.012506899), (7, 0.012505305), (8, 0.0125064375), (9, 0.012505492)]
larkin daniel j. 10662 Larkin Daniel J. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/337 l. hipp andrew, kattge jens, prescott william, tonietto rebecca k., jacobi sarah k., bowles marlin l. Dryad Digital Repository 2015 Community, phylogeny [(0, 0.27219525), (1, 0.6049329), (2, 0.0055617527), (3, 0.0055603785), (4, 0.0055585047), (5, 0.00555856), (6, 0.005558599), (7, 0.0055593955), (8, 0.08395417), (9, 0.0055605303)]
launay christian 10894 Launay Christian 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/431 Video, Games, Review [(0, 0.00476588), (1, 0.004766789), (2, 0.12435558), (3, 0.057232276), (4, 0.2147494), (5, 0.0047664195), (6, 0.004766229), (7, 0.004766725), (8, 0.26865774), (9, 0.31117293)]
lavigne claire 10149 Lavigne Claire 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/88 miguet paul Dryad Digital Repository 2017 dataset [(0, 0.17261122), (1, 0.0058898493), (2, 0.21657047), (3, 0.0058890698), (4, 0.0058876984), (5, 0.0058876434), (6, 0.0058876406), (7, 0.15128541), (8, 0.005888609), (9, 0.42420235)]
lavorel sandra 10241 Lavorel Sandra 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/144 mouchet maud, turkelboom francis, byczek coline, meersmans jeroen Dryad Digital Repository 2015 Richness, ecosystem, services [(0, 0.0038500698), (1, 0.3646028), (2, 0.0038500747), (3, 0.079086386), (4, 0.31043294), (5, 0.003849183), (6, 0.22277877), (7, 0.0038496633), (8, 0.0038506726), (9, 0.0038494663)]
lazzari barbara 10266 Lazzari Barbara 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/159 frattini stefano, chessa stefania, talenti andrea, castiglioni bianca, marsan paolo, crepaldi paola, pagnacco giulio, williams john, stella alessandra Figshare 2018 Additional [(0, 0.016672082), (1, 0.016670983), (2, 0.016673623), (3, 0.6832785), (4, 0.016671475), (5, 0.016670097), (6, 0.18334706), (7, 0.01667465), (8, 0.016671354), (9, 0.016670162)]
lee michael 10893 Lee Michael https://www.aifb.kit.edu/web/DSKG/dataset/430 michael lee, alexander perkins, perkins alexander, tanentzapf guy, guy tanentzapf figshare 2019 Data.xlsx [(0, 0.38986102), (1, 0.0025018675), (2, 0.002502987), (3, 0.0025023213), (4, 0.0025019143), (5, 0.0025020312), (6, 0.0025019953), (7, 0.28618985), (8, 0.30643418), (9, 0.0025018284)]
lee michael 11150 Lee Michael https://www.aifb.kit.edu/web/DSKG/dataset/550 perkins alexander, tanentzapf guy Figshare 2012 Data.xlsx [(0, 0.34298214), (1, 0.025010163), (2, 0.025006233), (3, 0.025011513), (4, 0.4569462), (5, 0.025006233), (6, 0.025009178), (7, 0.025012821), (8, 0.025009297), (9, 0.025006233)]
lee tsz-cheung 10501 Lee Tsz-Cheung 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
legese mekuria 10760 Legese Mekuria 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/390 tobias fr de wit, spieker nicole, koech ramona, nyarango robert, ndwiga stanley, fenenga christine j. figshare 2019 Analyzing, digital, healthcare, exchange, platform, surveillance, antibiotic, prescriptions, primary, urban, Kenya:, mixed-methods, study [(0, 0.0090974895), (1, 0.009099293), (2, 0.009098916), (3, 0.009097519), (4, 0.009104664), (5, 0.009097751), (6, 0.009100963), (7, 0.9181042), (8, 0.009101116), (9, 0.009098127)]
legesse getahun 10789 Legesse Getahun 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/399 masud mohammad badrul, mcallister tim, lelyk glenn, krobel roland, faramarzi monireh PANGAEA - Data Publisher for Earth & Environmental Science 2017 Deriving, Canada-wide, soils, dataset, Water, Assessment, (SWAT),, supplement, Cordeiro,, Marcos, Lelyk,, Glenn;, Kröbel,, Roland;, Legesse,, Getahun;, Faramarzi,, Monireh;, Masud,, Mohammad, Badrul;, McAllister,, (2018):, Deriving, dataset, agriculturally, relevant, soils, Landscapes, Canada, (SLC), database, Water, Assessment, (SWAT), simulations., Earth, System, Science, Data,, 10(3),, 1673-1686 [(0, 0.002084727), (1, 0.0020848836), (2, 0.0020844473), (3, 0.0020843572), (4, 0.30710477), (5, 0.0020848878), (6, 0.0020846366), (7, 0.22581027), (8, 0.4524925), (9, 0.0020845437)]
leibin li 10592 Leibin Li 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/290 zhixiong zhou, liu bo, baohua chen, shi yue, pu fei, huaqiang bai, xu peng figshare 2019 Metadata, record, sequence, assembly, Takifugu, bimaculatus, genome, using, PacBio, technologies [(0, 0.31403518), (1, 0.004765449), (2, 0.004767349), (3, 0.0047654244), (4, 0.05541822), (5, 0.004765057), (6, 0.0047658132), (7, 0.0047651967), (8, 0.5971871), (9, 0.0047652577)]
leilei shi 11013 Leilei Shi 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/486 xiaolu tang, shaohui fan, wenjie zhang, sicong gao, chen guo figshare 2019 gridded, dataset, belowground, autotrophic, respiration, global, terrestrial, ecosystems, upscaling, observations [(0, 0.00091790804), (1, 0.0009178842), (2, 0.00091789634), (3, 0.0009178029), (4, 0.032477044), (5, 0.00091784936), (6, 0.0009178825), (7, 0.932198), (8, 0.00091790507), (9, 0.028899837)]
leipzig jeremy 10881 Leipzig Jeremy 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/425 n. meekings kiran, p. taylor graham, r. m. bangham charles Dryad Digital Repository 2016 Datasets, study [(0, 0.005564661), (1, 0.0055636633), (2, 0.46103227), (3, 0.005563212), (4, 0.0055632675), (5, 0.005562972), (6, 0.0055633644), (7, 0.49445632), (8, 0.005563717), (9, 0.005566529)]
lelyk glenn 10787 Lelyk Glenn 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/399 masud mohammad badrul, mcallister tim, krobel roland, legesse getahun, faramarzi monireh PANGAEA - Data Publisher for Earth & Environmental Science 2017 Deriving, Canada-wide, soils, dataset, Water, Assessment, (SWAT),, supplement, Cordeiro,, Marcos, Lelyk,, Glenn;, Kröbel,, Roland;, Legesse,, Getahun;, Faramarzi,, Monireh;, Masud,, Mohammad, Badrul;, McAllister,, (2018):, Deriving, dataset, agriculturally, relevant, soils, Landscapes, Canada, (SLC), database, Water, Assessment, (SWAT), simulations., Earth, System, Science, Data,, 10(3),, 1673-1686 [(0, 0.002084727), (1, 0.0020848836), (2, 0.0020844473), (3, 0.0020843572), (4, 0.30710477), (5, 0.0020848878), (6, 0.0020846366), (7, 0.22581027), (8, 0.4524925), (9, 0.0020845437)]
lemainque arnaud 10053 Lemainque Arnaud 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/31 couloux arnaud, wincker patrick, jean marc, noel benjamin, cruaud corinne, da silva corinne, dutreux fabien', lapalu nicolas, linglin juliette, rouxel thierry, balesdent marie-helene Figshare 2018 Genomic, datasets [(0, 0.8874455), (1, 0.012505132), (2, 0.012504966), (3, 0.012509499), (4, 0.012504909), (5, 0.012505869), (6, 0.012506899), (7, 0.012505305), (8, 0.0125064375), (9, 0.012505492)]
leme luiz andre 10255 Leme Luiz André 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/151 neves junior angelo batista Figshare 2017 Dataset, Descriptions [(0, 0.0011000651), (1, 0.24881066), (2, 0.0011001306), (3, 0.001099848), (4, 0.0010999879), (5, 0.0011000679), (6, 0.0011001813), (7, 0.7423889), (8, 0.0011001531), (9, 0.0010999878)]
lemenkova polina 10725 Lemenkova Polina 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/376 Figshare 2018 Sharing,, Distribution, Updating, Using, Social, Coding, Community, Github, LaTeX, Packages, Graduate, Research [(0, 0.017526032), (1, 0.00074686925), (2, 0.00074684346), (3, 0.0007468538), (4, 0.7073522), (5, 0.00074688176), (6, 0.020764051), (7, 0.0007469172), (8, 0.0007469427), (9, 0.24987638)]
lemieux claude 11132 Lemieux Claude 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/539 otis christian, turmel monique Dryad Digital Repository 2014 Amino, dataset [(0, 0.43331352), (1, 0.005266097), (2, 0.5245582), (3, 0.0052660317), (4, 0.00526577), (5, 0.0052659), (6, 0.005265755), (7, 0.0052662822), (8, 0.005266398), (9, 0.0052660224)]
lemmon alan 10922 Lemmon Alan 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/449 barrow lisa, lemmon emily Dryad Digital Repository 2018 datasets [(0, 0.006256595), (1, 0.08220225), (2, 0.25246012), (3, 0.0062573324), (4, 0.0062564355), (5, 0.0062565412), (6, 0.0062572267), (7, 0.0062564355), (8, 0.006256617), (9, 0.6215404)]
lemmon emily 10923 Lemmon Emily 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/449 barrow lisa, lemmon alan Dryad Digital Repository 2018 datasets [(0, 0.006256595), (1, 0.08220225), (2, 0.25246012), (3, 0.0062573324), (4, 0.0062564355), (5, 0.0062565412), (6, 0.0062572267), (7, 0.0062564355), (8, 0.006256617), (9, 0.6215404)]
lendemer james c. 11155 Lendemer James C. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/554 stone daphne f., james w., anderson frances l. Dryad Digital Repository 2016 data_packet [(0, 0.0033349076), (1, 0.0033349362), (2, 0.0033355476), (3, 0.6295609), (4, 0.0033348904), (5, 0.0033348019), (6, 0.0033359097), (7, 0.0033350228), (8, 0.34375814), (9, 0.0033349448)]
lentini g. 10546 Lentini G. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
leo van de pas 11217 Leo van de Pas 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/1403 2003 Genealogics [(0, 0.2200285), (1, 0.020003764), (2, 0.020003114), (3, 0.020006344), (4, 0.020003261), (5, 0.61994255), (6, 0.020003114), (7, 0.020003114), (8, 0.020003114), (9, 0.020003114)]
leocadio jailson 10727 Leocadio Jailson 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/378 2017 Observations, turtles [(0, 0.622995), (1, 0.0016968665), (2, 0.0016965682), (3, 0.0016965664), (4, 0.0016965278), (5, 0.0016967825), (6, 0.001696586), (7, 0.36343166), (8, 0.0016968031), (9, 0.0016965922)]
lerner yulia 10339 Lerner Yulia 86803240, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/198 scherf k. suzy, katkov mikhail, hasson uri, behrmann marlene Figshare 2018 Developmental, trajectories, brain, development [(0, 0.0021756173), (1, 0.0021761425), (2, 0.0021760834), (3, 0.002175505), (4, 0.0021757244), (5, 0.0021765279), (6, 0.002175662), (7, 0.0021755423), (8, 0.9804178), (9, 0.0021754322)]
levene mark 10475 Levene Mark https://www.aifb.kit.edu/web/DSKG/dataset/255 harris martyn Figshare 2018 Nobel, Prize, winners [(0, 0.014298388), (1, 0.014303934), (2, 0.0143006435), (3, 0.014298743), (4, 0.014306053), (5, 0.014297346), (6, 0.014297972), (7, 0.014299149), (8, 0.01429828), (9, 0.8712995)]
lewis david a. 10424 Lewis David A. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
li qingxiang 10476 Li Qingxiang 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/256 PANGAEA - Data Publisher for Earth & Environmental Science 2019 China, Merged, Surface, Temperature,, supplement, Xiang;, Huang,, Boyin;, Cheng,, Jiayi;, Wenhui;, Qiao,, Shaobo;, Qingxiang, review):, merge, global, surface, temperature, datasets, since, start, Century., Earth, System, Science, Discussions, [(0, 0.0027798882), (1, 0.0027798547), (2, 0.0027799797), (3, 0.0027796389), (4, 0.002779729), (5, 0.0027800926), (6, 0.0027807709), (7, 0.36987686), (8, 0.0027800077), (9, 0.6078832)]
li sanbai 11035 Li Sanbai 185592680, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/498 2019 input_data [(0, 0.025001515), (1, 0.025003863), (2, 0.025013112), (3, 0.2940976), (4, 0.5058527), (5, 0.025006207), (6, 0.025008457), (7, 0.0250037), (8, 0.025007108), (9, 0.02500573)]
li wei 10742 Li Wei 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/382 ciais philippe, peng shushi, makowski david Figshare 2018 Reference, dataset [(0, 0.012517096), (1, 0.012518335), (2, 0.012516793), (3, 0.012516793), (4, 0.012516846), (5, 0.012516793), (6, 0.012517049), (7, 0.012517013), (8, 0.8873463), (9, 0.01251698)]
liakata maria 10456 Liakata Maria 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/242 derczynski leon, zubiaga arkaitz, kochkina elena, gorrell genevieve, aker ahmet, bontcheva kalina Figshare 2019 RumourEval [(0, 0.0034522405), (1, 0.0034517262), (2, 0.0034515297), (3, 0.0034516058), (4, 0.63409746), (5, 0.0034525406), (6, 0.19449508), (7, 0.0034517439), (8, 0.14724432), (9, 0.00345177)]
liang chieh-kai 10395 Liang Chieh-Kai 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/225 niu shan-ce, xu qing, zhang guo-qiang, zhang yong-qiang, tsai wen-chieh, hsu jui-ling, luo yi-bo, liu zhong-jian Dryad Digital Repository 2016 transcriptome, assembly [(0, 0.003851089), (1, 0.0038520696), (2, 0.21791379), (3, 0.0038512107), (4, 0.003852284), (5, 0.0038514584), (6, 0.0038511688), (7, 0.7512733), (8, 0.0038515604), (9, 0.003852084)]
liang liyuan 11018 Liang Liyuan https://www.aifb.kit.edu/web/DSKG/dataset/487 graham david, chen hongmei, yang ziming, chu rosalie, wullschleger stan, gu baohua Oak Ridge National Laboratory, TN, Oak Ridge, US 2018 ESI-FTICR-MS, Molecular, Characterization, Degradation, under, Warming, Tundra, Soils, Barrow,, Alaska [(0, 0.0020430337), (1, 0.0020430312), (2, 0.0020425203), (3, 0.5381932), (4, 0.0020427343), (5, 0.002042781), (6, 0.0020428018), (7, 0.20485827), (8, 0.24264874), (9, 0.0020428668)]
liberal marcos 10769 Liberal Marcos https://www.aifb.kit.edu/web/DSKG/dataset/392 correia ana m., gandra miguel, valente raul, agatha gil, rosso massimiliano, pierce graham j. figshare 2019 Metadata, record, dataset, cetacean, occurrences, Eastern, North, Atlantic [(0, 0.26775646), (1, 0.011120489), (2, 0.011119371), (3, 0.011119299), (4, 0.011123657), (5, 0.011119022), (6, 0.011122717), (7, 0.011119022), (8, 0.64327866), (9, 0.011121326)]
liguori pietro 10300 Liguori Pietro 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/174 simone luigi de Figshare 2019 Failure, dataset [(0, 0.0035731816), (1, 0.0035734777), (2, 0.0035734738), (3, 0.0035731797), (4, 0.0035731427), (5, 0.0035739567), (6, 0.0035733005), (7, 0.0035745234), (8, 0.9678381), (9, 0.003573657)]
lima kassio 10282 Lima Kassio 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/163 morais camilo Figshare 2018 Fungi, Dataset [(0, 0.004767363), (1, 0.95708877), (2, 0.004767364), (3, 0.004767717), (4, 0.0047672777), (5, 0.0047683013), (6, 0.004768141), (7, 0.0047679446), (8, 0.0047682533), (9, 0.004768903)]
linglin juliette 10056 Linglin Juliette 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/31 couloux arnaud, wincker patrick, jean marc, noel benjamin, cruaud corinne, da silva corinne, lemainque arnaud, dutreux fabien', lapalu nicolas, rouxel thierry, balesdent marie-helene Figshare 2018 Genomic, datasets [(0, 0.8874455), (1, 0.012505132), (2, 0.012504966), (3, 0.012509499), (4, 0.012504909), (5, 0.012505869), (6, 0.012506899), (7, 0.012505305), (8, 0.0125064375), (9, 0.012505492)]
lingyun song 10417 Lingyun Song 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
lisa 10012 Lisa 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/8 mario, alarcon marisa, aldasoro juan j., sanmartin isabel Dryad Digital Repository 2015 Figure [(0, 0.38135788), (1, 0.00834963), (2, 0.00834942), (3, 0.008351242), (4, 0.2579381), (5, 0.0083501255), (6, 0.008349011), (7, 0.008349428), (8, 0.008351455), (9, 0.3022537)]
liu bo 10587 Liu Bo 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/290 zhixiong zhou, baohua chen, shi yue, pu fei, huaqiang bai, leibin li, xu peng figshare 2019 Metadata, record, sequence, assembly, Takifugu, bimaculatus, genome, using, PacBio, technologies [(0, 0.31403518), (1, 0.004765449), (2, 0.004767349), (3, 0.0047654244), (4, 0.05541822), (5, 0.004765057), (6, 0.0047658132), (7, 0.0047651967), (8, 0.5971871), (9, 0.0047652577)]
liu miao 10445 Liu Miao 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/240 chen wei, persson kristin, mrdjenovich david, ballouz eric, winston donald, graf tanja, thomas d., prinz fritz b. Figshare 2018 Dielectric, Constant [(0, 0.0020839851), (1, 0.002084241), (2, 0.0020839015), (3, 0.81947345), (4, 0.0020839167), (5, 0.0020840997), (6, 0.002084219), (7, 0.002084031), (8, 0.16385399), (9, 0.0020841232)]
liu xinye 10729 Liu Xinye 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/379 yang hua, xin mingming, du jinkun, hu zhaorong, peng huiru, rossi vincenzo, sun qixin, ni zhongfu, yao yingyin Dryad Digital Repository 2016 Supplemental, Dataset [(0, 0.87141), (1, 0.0142872), (2, 0.014290962), (3, 0.014288103), (4, 0.014287115), (5, 0.014287165), (6, 0.014287392), (7, 0.014287283), (8, 0.014287304), (9, 0.014287489)]
liu zhong-jian 10397 Liu Zhong-Jian 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/225 niu shan-ce, xu qing, zhang guo-qiang, zhang yong-qiang, tsai wen-chieh, hsu jui-ling, liang chieh-kai, luo yi-bo Dryad Digital Repository 2016 transcriptome, assembly [(0, 0.003851089), (1, 0.0038520696), (2, 0.21791379), (3, 0.0038512107), (4, 0.003852284), (5, 0.0038514584), (6, 0.0038511688), (7, 0.7512733), (8, 0.0038515604), (9, 0.003852084)]
lizi chen 10067 Lizi Chen 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/37 Figshare 2017 Intraday-Data [(0, 0.050005604), (1, 0.05001018), (2, 0.050018214), (3, 0.050005604), (4, 0.54992837), (5, 0.050005604), (6, 0.050005604), (7, 0.050005604), (8, 0.050009646), (9, 0.050005604)]
lohmann gerrit 10372 Lohmann Gerrit 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/215 gowan evan j, niu lu, knorr gregor PANGAEA - Data Publisher for Earth & Environmental Science 2018 Geology, datasets, North, America,, Greenland, surrounding, areas, sheet, models,, supplement, Gowan,, Knorr,, Gregor;, Lohmann,, Gerrit, (2019):, Geology, datasets, North, America,, Greenland, surrounding, areas, sheet, models., Earth, System, Science, Data,, 11(1),, 375-391 [(0, 0.003228117), (1, 0.00322831), (2, 0.0032279082), (3, 0.0032286241), (4, 0.0032280716), (5, 0.0032279247), (6, 0.6288874), (7, 0.34528613), (8, 0.0032285403), (9, 0.0032289536)]
loiselle steven 10670 Loiselle Steven 192562407, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/339 davi cunha, shupe scott, rocha luciana, riveros elsa valiente Figshare 2016 Data.xlsx [(0, 0.016682342), (1, 0.016683985), (2, 0.84985054), (3, 0.016677687), (4, 0.016691793), (5, 0.016677799), (6, 0.016687857), (7, 0.016688213), (8, 0.016678357), (9, 0.016681392)]
lok wun chao 10626 Lok Wun Chao 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/304 janell Sharing [(0, 0.009093785), (1, 0.32825953), (2, 0.009093278), (3, 0.00909428), (4, 0.0090935305), (5, 0.009093685), (6, 0.009093017), (7, 0.009095924), (8, 0.009093772), (9, 0.5989892)]
lombaert eric 10654 Lombaert Eric 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/332 javal marion, courtin claudine, kerdelhue carole, tsykun tetyana, prospero simone, roques alain, roux geraldine Figshare 2019 Microsatellites, dataset [(0, 0.010009417), (1, 0.010015825), (2, 0.010018505), (3, 0.010009823), (4, 0.010009417), (5, 0.010009417), (6, 0.010009825), (7, 0.010010399), (8, 0.010009417), (9, 0.9098979)]
lombardi giampiero 11110 Lombardi Giampiero 185592680, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/522 ravetto enri simone, probo massimiliano, renna manuela, caro eleonora, lussiana carola, lonati michele Figshare 2018 Dataset.xlsx [(0, 0.0055587357), (1, 0.0055583618), (2, 0.005558879), (3, 0.81081873), (4, 0.0055576377), (5, 0.005557941), (6, 0.0055582672), (7, 0.14471501), (8, 0.0055579045), (9, 0.005558505)]
lombardot thierry 10169 Lombardot Thierry 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/106 kottmann renzo, pfeffer hauke, richter michael, teeling hanno, frank oliver Figshare 2011 Genomes, Mapserver [(0, 0.728574), (1, 0.0032283089), (2, 0.0032278574), (3, 0.0032276625), (4, 0.003227962), (5, 0.0032298383), (6, 0.0032279433), (7, 0.0032280644), (8, 0.24560077), (9, 0.0032275543)]
lonati michele 11111 Lonati Michele 185592680, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/522 ravetto enri simone, probo massimiliano, renna manuela, caro eleonora, lussiana carola, lombardi giampiero Figshare 2018 Dataset.xlsx [(0, 0.0055587357), (1, 0.0055583618), (2, 0.005558879), (3, 0.81081873), (4, 0.0055576377), (5, 0.005557941), (6, 0.0055582672), (7, 0.14471501), (8, 0.0055579045), (9, 0.005558505)]
long charles 11056 Long Charles 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
longenecker david 11057 Longenecker David 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
lopez-alvillar kayla 10088 Lopez-Alvillar Kayla 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/54 mathies laura, surjyendu ray, arbeitman michelle, davies andrew Figshare 2019 Additional [(0, 0.3895015), (1, 0.0020431778), (2, 0.0020430647), (3, 0.0020425825), (4, 0.0020429618), (5, 0.0020425075), (6, 0.0020424363), (7, 0.5941563), (8, 0.0020427254), (9, 0.0020426905)]
lopez-alvillar kayla 11091 Lopez-Alvillar Kayla 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/517 mathies laura, surjyendu ray, arbeitman michelle, davies andrew Figshare 2019 Additional [(0, 0.18354425), (1, 0.0032281477), (2, 0.52929646), (3, 0.0032277578), (4, 0.13443571), (5, 0.0032277743), (6, 0.0032274346), (7, 0.13335569), (8, 0.0032284725), (9, 0.0032282593)]
lorenzo arturo 10871 Lorenzo Arturo 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/416 schwarz matthias, wild martin, ohmura atsumu, schar christoph, muller guido, folini doris, hakuba maria z PANGAEA - Data Publisher for Earth & Environmental Science 2017 Global, Energy, Balance, Archive, (GEBA), version, 2017:, database, worldwide, measured, surface, energy, fluxes., database, files,, supplement, Wild,, Martin;, Ohmura,, Atsumu;, Schär,, Christoph;, Müller,, Guido;, Folini,, Doris;, Schwarz,, Matthias;, Hakuba,, Maria, Sanchez-Lorenzo,, Arturo, (2017):, Global, Energy, Balance, Archive, (GEBA), version, 2017:, database, worldwide, measured, surface, energy, fluxes., Earth, System, Science, Data,, 9(2),, 601-613 [(0, 0.08709674), (1, 0.0008006429), (2, 0.00080067), (3, 0.00080083293), (4, 0.00080070284), (5, 0.092057034), (6, 0.00080055185), (7, 0.28708142), (8, 0.52896065), (9, 0.00080073724)]
lorrey a. 10547 Lorrey A. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
lorrey andrew 10502 Lorrey Andrew 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
lott n. 10548 Lott N. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
loureiro joao 10246 Loureiro João 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/147 mota lucie, torices ruben Figshare 2016 chromosome, number, polymorphism [(0, 0.22323138), (1, 0.0038523844), (2, 0.0038538051), (3, 0.0038524563), (4, 0.0038516119), (5, 0.0038514119), (6, 0.0038521749), (7, 0.0038523455), (8, 0.74595094), (9, 0.0038514761)]
lovati sara 10838 Lovati Sara 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
loveday benjamin 10002 Loveday Benjamin 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/4 smyth timothy j PANGAEA - Data Publisher for Earth & Environmental Science 2018 40-year, AVHRR, record, visible, channel, coccolithophorid, blooms,, links, netCDF, files [(0, 0.0016684014), (1, 0.0016685541), (2, 0.001668402), (3, 0.0016682871), (4, 0.0016685829), (5, 0.10616243), (6, 0.51141965), (7, 0.350764), (8, 0.0016687162), (9, 0.021642948)]
lozhkin anatoly v. 10515 Lozhkin Anatoly V. 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/258 anderson patricia m. 2017 Figurnoye, pollen, dataset [(0, 0.012502146), (1, 0.01250213), (2, 0.0125019355), (3, 0.0125019355), (4, 0.012502054), (5, 0.012502315), (6, 0.8874807), (7, 0.012502151), (8, 0.012502517), (9, 0.012502163)]
lozhnikov nikita 10091 Lozhnikov Nikita 41008148, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/55 derczynski leon, mazzara manuel Figshare 2018 RuStance [(0, 0.8999395), (1, 0.011118147), (2, 0.01111729), (3, 0.011117178), (4, 0.01111739), (5, 0.011119539), (6, 0.011117412), (7, 0.011117053), (8, 0.011118132), (9, 0.011118432)]
lu yengfang 11275 Lu Yengfang 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2056 carson mencken, byron johnson, rodney stark, eric liu, anna sun, chiu heu-yuan, fenggang yangf, victor yuan 2007 Spiritual, Study, Chinese, Residents [(0, 0.020010915), (1, 0.21982822), (2, 0.02002011), (3, 0.020011319), (4, 0.02001927), (5, 0.02001087), (6, 0.020023542), (7, 0.020014815), (8, 0.6200476), (9, 0.020013252)]
lubker s. j. 10549 Lubker S. J. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
ludtke joshua a. 10336 Ludtke Joshua A. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/197 rankin brian d., w. fox jeremy, barron-ortiz christian r., chew amy e., a. holroyd patricia, yang xingkai, m. theodor jessica Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0029424382), (1, 0.0029434902), (2, 0.0029421244), (3, 0.002942372), (4, 0.0029427286), (5, 0.97351766), (6, 0.0029422862), (7, 0.0029421311), (8, 0.0029424964), (9, 0.0029422138)]
ludtke joshua a. 10877 Ludtke Joshua A. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/417 rankin brian d., w. fox jeremy, barron-ortiz christian r., chew amy e., a. holroyd patricia, yang xingkai, m. theodor jessica Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0027040981), (1, 0.0027046625), (2, 0.002703693), (3, 0.002703763), (4, 0.0027044355), (5, 0.9756645), (6, 0.002703699), (7, 0.0027036292), (8, 0.0027038676), (9, 0.002703686)]
luo ting 10166 Luo Ting 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/100 Figshare 2016 draft [(0, 0.010002165), (1, 0.010002474), (2, 0.010002131), (3, 0.010002038), (4, 0.010002109), (5, 0.010003096), (6, 0.010002962), (7, 0.010004601), (8, 0.90997607), (9, 0.010002398)]
luo ting 10296 Luo Ting 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/170 Figshare 2016 Data3 [(0, 0.010002165), (1, 0.010002474), (2, 0.01000213), (3, 0.010002038), (4, 0.010002109), (5, 0.01000306), (6, 0.01000296), (7, 0.010003772), (8, 0.9099769), (9, 0.010002398)]
luo ting 10738 Luo Ting 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/381 Figshare 2016 Data4 [(0, 0.010002164), (1, 0.010002473), (2, 0.010002129), (3, 0.0100020375), (4, 0.010002108), (5, 0.010003059), (6, 0.0100029595), (7, 0.01000377), (8, 0.90997696), (9, 0.010002397)]
luo yi-bo 10396 Luo Yi-Bo 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/225 niu shan-ce, xu qing, zhang guo-qiang, zhang yong-qiang, tsai wen-chieh, hsu jui-ling, liang chieh-kai, liu zhong-jian Dryad Digital Repository 2016 transcriptome, assembly [(0, 0.003851089), (1, 0.0038520696), (2, 0.21791379), (3, 0.0038512107), (4, 0.003852284), (5, 0.0038514584), (6, 0.0038511688), (7, 0.7512733), (8, 0.0038515604), (9, 0.003852084)]
lupi angelo 11058 Lupi Angelo 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
luppa peter 10192 Luppa Peter 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/115 fichter andreas, mucke thomas, ritschl lucas, humbs martin, wolff klaus-dietrich Dryad Digital Repository 2016 Minimal, dataset [(0, 0.0027062823), (1, 0.3120456), (2, 0.0027061522), (3, 0.002705297), (4, 0.0027060604), (5, 0.002705573), (6, 0.66630715), (7, 0.002706259), (8, 0.002705882), (9, 0.0027057636)]
lussiana carola 11109 Lussiana Carola 185592680, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/522 ravetto enri simone, probo massimiliano, renna manuela, caro eleonora, lombardi giampiero, lonati michele Figshare 2018 Dataset.xlsx [(0, 0.0055587357), (1, 0.0055583618), (2, 0.005558879), (3, 0.81081873), (4, 0.0055576377), (5, 0.005557941), (6, 0.0055582672), (7, 0.14471501), (8, 0.0055579045), (9, 0.005558505)]
luterbacher j. 10550 Luterbacher J. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
luzi lucia 10839 Luzi Lucia 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
m. cottontail veronika 10383 M. Cottontail Veronika 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/223 borner janus, pick christian, thiede jenny, kolawole olatunji matthew, tanyi kingsley manchang, wellinghausen nele Dryad Digital Repository 2015 Concatenated, multigene, aignments [(0, 0.21523102), (1, 0.005003556), (2, 0.74474365), (3, 0.0050041066), (4, 0.005002706), (5, 0.0050027766), (6, 0.005002784), (7, 0.005003692), (8, 0.0050028167), (9, 0.005002891)]
m. drobniak szymon 10575 M. Drobniak Szymon 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/277 griesser michael, wagner gretchen f., ekman jan Dryad Digital Repository 2017 female, survival [(0, 0.0038504086), (1, 0.003850529), (2, 0.19672926), (3, 0.0038500207), (4, 0.04689146), (5, 0.003849987), (6, 0.0038509804), (7, 0.0038510857), (8, 0.0038501914), (9, 0.7294261)]
m. theodor jessica 10338 M. Theodor Jessica 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/197 rankin brian d., w. fox jeremy, barron-ortiz christian r., chew amy e., a. holroyd patricia, ludtke joshua a., yang xingkai Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0029424382), (1, 0.0029434902), (2, 0.0029421244), (3, 0.002942372), (4, 0.0029427286), (5, 0.97351766), (6, 0.0029422862), (7, 0.0029421311), (8, 0.0029424964), (9, 0.0029422138)]
m. theodor jessica 10879 M. Theodor Jessica 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/417 rankin brian d., w. fox jeremy, barron-ortiz christian r., chew amy e., a. holroyd patricia, ludtke joshua a., yang xingkai Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0027040981), (1, 0.0027046625), (2, 0.002703693), (3, 0.002703763), (4, 0.0027044355), (5, 0.9756645), (6, 0.002703699), (7, 0.0027036292), (8, 0.0027038676), (9, 0.002703686)]
madjar cecile 10322 Madjar Cécile 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/194 das samir, sengupta ayan, mohades zia 2016 LORIS:, DICOM, anonymizer [(0, 0.0014721883), (1, 0.001472288), (2, 0.50277686), (3, 0.001471915), (4, 0.0014721786), (5, 0.0014722317), (6, 0.052457307), (7, 0.001472282), (8, 0.4344605), (9, 0.0014722854)]
magdamo colin 10398 Magdamo Colin 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/226 Figshare 2017 Journal [(0, 0.009098242), (1, 0.009099232), (2, 0.009097122), (3, 0.009098171), (4, 0.009098742), (5, 0.009097502), (6, 0.118767194), (7, 0.8084466), (8, 0.00909969), (9, 0.0090975175)]
mahbod moghadam 11205 Mahbod Moghadam 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/931 Genius [(0, 0.03334701), (1, 0.033350185), (2, 0.033347677), (3, 0.033347726), (4, 0.6998626), (5, 0.03335065), (6, 0.03334701), (7, 0.033347018), (8, 0.0333495), (9, 0.03335065)]
maheshwari gaurav 10284 maheshwari gaurav 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/165 Figshare 2017 Question, Answering [(0, 0.010007655), (1, 0.010003248), (2, 0.010002576), (3, 0.010003141), (4, 0.010003301), (5, 0.010003004), (6, 0.31398255), (7, 0.010006036), (8, 0.6059842), (9, 0.0100042755)]
maire florian 10079 Maire Florian 33923547 https://www.aifb.kit.edu/web/DSKG/dataset/49 friel nial, mira antonietta Figshare 2019 Adaptive, Incremental, Mixture, Markov, Chain, Monte, Carlo [(0, 0.0010535594), (1, 0.0010535887), (2, 0.0010535251), (3, 0.6922657), (4, 0.035224542), (5, 0.0010534284), (6, 0.0010534169), (7, 0.0010536773), (8, 0.26513505), (9, 0.0010535433)]
makarieva olga 10621 Makarieva Olga 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/301 nesterova nataliia, shikhov andrey, ostashov andrey PANGAEA - Data Publisher for Earth & Environmental Science 2018 Aufeis, (naleds), North-East, Russia:, catalogue, Indigirka, River, basin,, supplement, Makarieva,, Olga;, Shikhov,, Andrey;, Nesterova,, Nataliia;, Ostashov,, Andrey, (2019):, Historical, recent, aufeis, Indigirka, River, basin, (Russia)., Earth, System, Science, Data,, 11(1),, 409-420 [(0, 0.0011243594), (1, 0.18423253), (2, 0.001124277), (3, 0.0011243367), (4, 0.0011244587), (5, 0.0011244505), (6, 0.32737187), (7, 0.027727371), (8, 0.45392194), (9, 0.0011244246)]
makowski david 10741 makowski david 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/382 ciais philippe, peng shushi, li wei Figshare 2018 Reference, dataset [(0, 0.012517096), (1, 0.012518335), (2, 0.012516793), (3, 0.012516793), (4, 0.012516846), (5, 0.012516793), (6, 0.012517049), (7, 0.012517013), (8, 0.8873463), (9, 0.01251698)]
maksim moshkov 11204 Maksim Moshkov 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/866 Lib.ru [(0, 0.47099742), (1, 0.014290267), (2, 0.15718), (3, 0.014289208), (4, 0.014290264), (5, 0.2717927), (6, 0.0142916525), (7, 0.014289176), (8, 0.014289176), (9, 0.014290098)]
malek keyvan 10661 Malek Keyvan 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/336 Figshare 2018 Input, Output, Files [(0, 0.0023824258), (1, 0.0023819557), (2, 0.8807628), (3, 0.10018085), (4, 0.0023816896), (5, 0.0023821252), (6, 0.0023819553), (7, 0.0023822002), (8, 0.002382255), (9, 0.0023817532)]
malrieu florent 10039 Malrieu Florent 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/23 rouger romuald, reichel katja, stoeckel solenn, masson jean pierre Dryad Digital Repository 2016 Single, locus, analysis [(0, 0.25204143), (1, 0.0034509066), (2, 0.003451045), (3, 0.4227036), (4, 0.0034498337), (5, 0.0034501413), (6, 0.0034498873), (7, 0.0034507494), (8, 0.30110252), (9, 0.0034498938)]
malrieu florent 10359 Malrieu Florent 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/204 rouger romuald, reichel katja, stoeckel solenn, masson jean pierre Dryad Digital Repository 2016 analysis [(0, 0.003573256), (1, 0.12788935), (2, 0.0035737336), (3, 0.56620055), (4, 0.003572772), (5, 0.0035731047), (6, 0.0035729199), (7, 0.003573778), (8, 0.28089762), (9, 0.0035729483)]
mancini marco 10861 Mancini Marco 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
maolin wang 10120 Maolin Wang 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/77 yang hua, chengran zhou, guolin li, wang jing, gao ping, wang rui, zhao yun figshare 2019 Metadata, record, Reference, small, multiple, tissues, Davidia, involucrata, Baill [(0, 0.0052666413), (1, 0.005266552), (2, 0.39063543), (3, 0.005265295), (4, 0.0052668964), (5, 0.005265483), (6, 0.5672355), (7, 0.005265628), (8, 0.0052664257), (9, 0.0052661407)]
marateb hamid reza 10580 Marateb Hamid Reza 127413603, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/283 Figshare 2016 simulated, signals [(0, 0.010010643), (1, 0.1775546), (2, 0.010010039), (3, 0.010010919), (4, 0.010009659), (5, 0.010010386), (6, 0.4059609), (7, 0.2515958), (8, 0.10482695), (9, 0.010010155)]
marchio serena 10461 Marchio Serena 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/243 zanivan sara, cascone ilaria, peyron chiara, molineris ivan, caselle michele, bussolino federico Figshare 2011 Non-synchronized, cells [(0, 0.44257465), (1, 0.25085744), (2, 0.2832089), (3, 0.0033364112), (4, 0.0033369483), (5, 0.0033370678), (6, 0.0033364734), (7, 0.003336802), (8, 0.003337486), (9, 0.0033377972)]
marcos d. 10302 Marcos D. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/180 catalano santiago a. Dryad Digital Repository 2014 Supplementary [(0, 0.94997835), (1, 0.005558115), (2, 0.005558177), (3, 0.005557236), (4, 0.0055572074), (5, 0.0055572283), (6, 0.005558993), (7, 0.0055576055), (8, 0.005558949), (9, 0.0055580963)]
marcus austin 10109 Marcus Austin 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/71 chang nadine, pyles john, abhinav gupta, tarr michael, aminoff elissa Figshare 2019 BOLD5000 [(0, 0.021280022), (1, 0.08836781), (2, 0.0005441114), (3, 0.00054414745), (4, 0.00054414535), (5, 0.00054410304), (6, 0.00054413086), (7, 0.034354564), (8, 0.8527328), (9, 0.00054415426)]
marenco stefano 10422 Marenco Stefano 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
mario 10011 Mario 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/8 lisa, alarcon marisa, aldasoro juan j., sanmartin isabel Dryad Digital Repository 2015 Figure [(0, 0.38135788), (1, 0.00834963), (2, 0.00834942), (3, 0.008351242), (4, 0.2579381), (5, 0.0083501255), (6, 0.008349011), (7, 0.008349428), (8, 0.008351455), (9, 0.3022537)]
mario pasquato 10083 Mario Pasquato 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/51 Cluster, Simulations [(0, 0.00037763114), (1, 0.00037771626), (2, 0.00037765442), (3, 0.00037770116), (4, 0.0003776901), (5, 0.00037762776), (6, 0.0003776305), (7, 0.0003776653), (8, 0.996601), (9, 0.0003776854)]
marko k 11147 Marko K 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/549 Building, Management, System, Analysis [(0, 0.0034493862), (1, 0.2773056), (2, 0.0034493199), (3, 0.0034495322), (4, 0.0034497178), (5, 0.0034492684), (6, 0.0034492225), (7, 0.2782892), (8, 0.0034500123), (9, 0.42025873)]
markus krotzsch 11223 Markus Krötzsch 41008148, 127413603, 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/1650 denny vrandecic Semantic, Vocabulary, Terminology [(0, 0.36284164), (1, 0.014291412), (2, 0.014287564), (3, 0.014287826), (4, 0.014287564), (5, 0.014287564), (6, 0.5228516), (7, 0.014288527), (8, 0.014287857), (9, 0.01428848)]
marsan paolo 10271 Marsan Paolo 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/159 lazzari barbara, frattini stefano, chessa stefania, talenti andrea, castiglioni bianca, crepaldi paola, pagnacco giulio, williams john, stella alessandra Figshare 2018 Additional [(0, 0.016672082), (1, 0.016670983), (2, 0.016673623), (3, 0.6832785), (4, 0.016671475), (5, 0.016670097), (6, 0.18334706), (7, 0.01667465), (8, 0.016671354), (9, 0.016670162)]
marshall g. j. 10551 Marshall G. J. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
marshall shawn j 10958 Marshall Shawn J 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/457 wood wendy h, whitehead terri l PANGAEA - Data Publisher for Earth & Environmental Science 2017 Daily, temperature, Foothills, Climate, Array, Mesonet,, Canadian, Rocky, Mountains,, 2005-2010,, supplement, Wood,, Wendy, Marshall,, Shawn, Fargey,, Shannon, Whitehead,, Terri, (2018):, Daily, temperature, records, mesonet, foothills, Canadian, Rocky, Mountains,, 2005-2010., Earth, System, Science, Data,, 10(1),, 595-607 [(0, 0.0012202285), (1, 0.00122033), (2, 0.0012203465), (3, 0.0012202293), (4, 0.0012201858), (5, 0.0012203619), (6, 0.44610682), (7, 0.30621794), (8, 0.2391332), (9, 0.001220381)]
martin emily s. 10103 Martin Emily S. 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/68 a. f. long tristan Dryad Digital Repository 2015 synthetic_dataset [(0, 0.0020019873), (1, 0.9819798), (2, 0.002003079), (3, 0.002001997), (4, 0.0020019955), (5, 0.002002115), (6, 0.0020023838), (7, 0.0020022956), (8, 0.0020022856), (9, 0.0020020804)]
martin robert 11138 Martin Robert 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/543 sheingate adam, keeve nachman Figshare 2017 Lobbying [(0, 0.0030334522), (1, 0.8670555), (2, 0.003032308), (3, 0.0030322743), (4, 0.0030326443), (5, 0.0030332196), (6, 0.0030325148), (7, 0.0030329812), (8, 0.10868253), (9, 0.0030326333)]
martin samuel 10406 Martin Samuel 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/229 causey dwight, pohl moritz, stead david, secombes christopher Figshare 2018 Additional [(0, 0.6282684), (1, 0.008335959), (2, 0.00834176), (3, 0.30503765), (4, 0.008335613), (5, 0.008336173), (6, 0.008335856), (7, 0.008336423), (8, 0.008336499), (9, 0.00833565)]
martini guido 10854 Martini Guido 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
mascandola claudia 10840 Mascandola Claudia 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
massa marco 10841 Massa Marco 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
masson jean pierre 10040 Masson Jean Pierre 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/23 rouger romuald, reichel katja, stoeckel solenn, malrieu florent Dryad Digital Repository 2016 Single, locus, analysis [(0, 0.25204143), (1, 0.0034509066), (2, 0.003451045), (3, 0.4227036), (4, 0.0034498337), (5, 0.0034501413), (6, 0.0034498873), (7, 0.0034507494), (8, 0.30110252), (9, 0.0034498938)]
masson jean pierre 10360 Masson Jean Pierre 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/204 rouger romuald, reichel katja, stoeckel solenn, malrieu florent Dryad Digital Repository 2016 analysis [(0, 0.003573256), (1, 0.12788935), (2, 0.0035737336), (3, 0.56620055), (4, 0.003572772), (5, 0.0035731047), (6, 0.0035729199), (7, 0.003573778), (8, 0.28089762), (9, 0.0035729483)]
mastrocicco micol 10127 Mastrocicco Micol 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/82 aschonitis vassilis g, ghirardini andrea, papamichail dimitris, kleoniki, colombani nicolo, castaldelli giuseppe, fano elisa-anna PANGAEA - Data Publisher for Earth & Environmental Science 2017 resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation,, links, ESRI-grid, files,, supplement, Aschonitis,, Vassilis, Papamichail,, Dimitris;, Demertzi,, Kleoniki;, Colombani,, Nicolo;, Mastrocicco,, Micol;, Ghirardini,, Andrea;, Castaldelli,, Giuseppe;, Fano,, Elisa-Anna, (2017):, High-resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation., Earth, System, Science, Data,, 9(2),, 615-638 [(0, 0.0005132323), (1, 0.0005132701), (2, 0.00051321497), (3, 0.00051319704), (4, 0.00051321386), (5, 0.0005132613), (6, 0.028460743), (7, 0.2619134), (8, 0.6910191), (9, 0.015527402)]
masud mohammad badrul 10785 Masud Mohammad Badrul 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/399 mcallister tim, lelyk glenn, krobel roland, legesse getahun, faramarzi monireh PANGAEA - Data Publisher for Earth & Environmental Science 2017 Deriving, Canada-wide, soils, dataset, Water, Assessment, (SWAT),, supplement, Cordeiro,, Marcos, Lelyk,, Glenn;, Kröbel,, Roland;, Legesse,, Getahun;, Faramarzi,, Monireh;, Masud,, Mohammad, Badrul;, McAllister,, (2018):, Deriving, dataset, agriculturally, relevant, soils, Landscapes, Canada, (SLC), database, Water, Assessment, (SWAT), simulations., Earth, System, Science, Data,, 10(3),, 1673-1686 [(0, 0.002084727), (1, 0.0020848836), (2, 0.0020844473), (3, 0.0020843572), (4, 0.30710477), (5, 0.0020848878), (6, 0.0020846366), (7, 0.22581027), (8, 0.4524925), (9, 0.0020845437)]
matano fabio 11087 Matano Fabio 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/516 fortelli alberto, sacchi marco PANGAEA - Data Publisher for Earth & Environmental Science 2019 Continuous, meteorological, monitoring, Posillipo, (Denza, Institute, weather, station, Naples, Campania, Region, Italy), during, period, January, December [(0, 0.0018535296), (1, 0.0018537701), (2, 0.13331537), (3, 0.0018532997), (4, 0.001853506), (5, 0.21196008), (6, 0.0018534109), (7, 0.13892013), (8, 0.0018540466), (9, 0.50468284)]
mathias meldgaard pedersen 11181 Mathias Meldgaard Pedersen 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/580 Movie, Reviews [(0, 0.0027803225), (1, 0.28818613), (2, 0.03037711), (3, 0.0027802452), (4, 0.033310927), (5, 0.07684635), (6, 0.0027809206), (7, 0.0027804663), (8, 0.40840945), (9, 0.15174806)]
mathies laura 10086 Mathies Laura 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/54 surjyendu ray, lopez-alvillar kayla, arbeitman michelle, davies andrew Figshare 2019 Additional [(0, 0.3895015), (1, 0.0020431778), (2, 0.0020430647), (3, 0.0020425825), (4, 0.0020429618), (5, 0.0020425075), (6, 0.0020424363), (7, 0.5941563), (8, 0.0020427254), (9, 0.0020426905)]
mathies laura 11089 Mathies Laura 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/517 surjyendu ray, lopez-alvillar kayla, arbeitman michelle, davies andrew Figshare 2019 Additional [(0, 0.18354425), (1, 0.0032281477), (2, 0.52929646), (3, 0.0032277578), (4, 0.13443571), (5, 0.0032277743), (6, 0.0032274346), (7, 0.13335569), (8, 0.0032284725), (9, 0.0032282593)]
matsui n. 10530 Matsui N. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
matthews john v. 10594 Matthews John V. 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/291 2017 Fisherman, pollen, surface, sample, dataset [(0, 0.016669046), (1, 0.36770847), (2, 0.01666777), (3, 0.016667772), (4, 0.016667955), (5, 0.016668366), (6, 0.49894437), (7, 0.016668107), (8, 0.016669987), (9, 0.016668126)]
maugeri m. 10552 Maugeri M. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., mock c. j., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
maugeri maurizio 10503 Maugeri Maurizio 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
maxim odegov 10074 Maxim Odegov 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/45 Human, proteins, interactions [(0, 0.17501344), (1, 0.0026341677), (2, 0.002633745), (3, 0.0026337237), (4, 0.002633691), (5, 0.0026338662), (6, 0.0026337043), (7, 0.0026338156), (8, 0.80391604), (9, 0.002633824)]
mazzara manuel 10093 Mazzara Manuel 41008148, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/55 lozhnikov nikita, derczynski leon Figshare 2018 RuStance [(0, 0.8999395), (1, 0.011118147), (2, 0.01111729), (3, 0.011117178), (4, 0.01111739), (5, 0.011119539), (6, 0.011117412), (7, 0.011117053), (8, 0.011118132), (9, 0.011118432)]
mcallister tim 10786 McAllister Tim 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/399 masud mohammad badrul, lelyk glenn, krobel roland, legesse getahun, faramarzi monireh PANGAEA - Data Publisher for Earth & Environmental Science 2017 Deriving, Canada-wide, soils, dataset, Water, Assessment, (SWAT),, supplement, Cordeiro,, Marcos, Lelyk,, Glenn;, Kröbel,, Roland;, Legesse,, Getahun;, Faramarzi,, Monireh;, Masud,, Mohammad, Badrul;, McAllister,, (2018):, Deriving, dataset, agriculturally, relevant, soils, Landscapes, Canada, (SLC), database, Water, Assessment, (SWAT), simulations., Earth, System, Science, Data,, 10(3),, 1673-1686 [(0, 0.002084727), (1, 0.0020848836), (2, 0.0020844473), (3, 0.0020843572), (4, 0.30710477), (5, 0.0020848878), (6, 0.0020846366), (7, 0.22581027), (8, 0.4524925), (9, 0.0020845437)]
mcvay john d. 11168 McVay John D. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/569 l. hipp andrew, s. manos paul Dryad Digital Repository 2017 partition [(0, 0.011138602), (1, 0.011126235), (2, 0.011131733), (3, 0.011123711), (4, 0.011123377), (5, 0.011123332), (6, 0.011128142), (7, 0.89984226), (8, 0.011126928), (9, 0.01113562)]
md irfan ali 11030 Md Irfan Ali 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/491 Recommendation [(0, 0.005884441), (1, 0.005885629), (2, 0.20406924), (3, 0.005885396), (4, 0.005888006), (5, 0.0058848807), (6, 0.0058839587), (7, 0.0058844746), (8, 0.0058848145), (9, 0.7488491)]
medina monica 11023 Medina Mónica 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/488 rippe john p., v. matz mikhail, khawaja nida z., h. pinzon c. jorge, d. castillo karl, w. davies sarah Dryad Digital Repository 2017 Microsatellite, genotype [(0, 0.0050014686), (1, 0.0050021126), (2, 0.25499824), (3, 0.0050017047), (4, 0.005001192), (5, 0.005001265), (6, 0.005001028), (7, 0.0050018337), (8, 0.7049896), (9, 0.0050015687)]
medvedovic mario 10329 Medvedovic Mario 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/196 yeung ka yee, bumgarner roger e Figshare 2011 overall, approach [(0, 0.47124034), (1, 0.08770295), (2, 0.0019617197), (3, 0.001961685), (4, 0.0019619197), (5, 0.0019616946), (6, 0.0019617123), (7, 0.0019619649), (8, 0.42732406), (9, 0.0019619258)]
meersmans jeroen 10240 Meersmans Jeroen 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/144 mouchet maud, turkelboom francis, byczek coline, lavorel sandra Dryad Digital Repository 2015 Richness, ecosystem, services [(0, 0.0038500698), (1, 0.3646028), (2, 0.0038500747), (3, 0.079086386), (4, 0.31043294), (5, 0.003849183), (6, 0.22277877), (7, 0.0038496633), (8, 0.0038506726), (9, 0.0038494663)]
melda ozdin 10068 Melda Özdin 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/38 Solar, System, Features [(0, 0.0035736763), (1, 0.40495834), (2, 0.0035741732), (3, 0.42455724), (4, 0.0035738975), (5, 0.14546572), (6, 0.00357435), (7, 0.003574526), (8, 0.003574402), (9, 0.0035736857)]
meng haotian 10905 Meng Haotian 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/436 guo yuxin, chen chong, xie tong, cui wei, jin xiaoye, zhu bofeng Dryad Digital Repository 2018 RAW_DATA [(0, 0.24413738), (1, 0.10899984), (2, 0.27884537), (3, 0.0019253815), (4, 0.35646468), (5, 0.001925676), (6, 0.0019252333), (7, 0.001925537), (8, 0.0019255829), (9, 0.0019253182)]
meng lin 10249 Meng Lin 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/149 xuecao li, yuyu zhou, ghassem asrar, chaoqun lu, qiusheng wu Figshare 2019 dataset, 30-meter, annual, vegetation, phenology, indicators, (1985-2015), urban, areas, conterminous, United, States [(0, 0.001516307), (1, 0.73037845), (2, 0.0015163294), (3, 0.0015162535), (4, 0.0015162897), (5, 0.0015165778), (6, 0.0015167102), (7, 0.0015168199), (8, 0.25748992), (9, 0.0015164119)]
menghan hu 10106 Menghan Hu 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/70 Figshare 2019 THzSecurityImageDataset [(0, 0.003227627), (1, 0.0032279724), (2, 0.0032273855), (3, 0.0032273685), (4, 0.080707856), (5, 0.5692297), (6, 0.0032276742), (7, 0.20839816), (8, 0.12229837), (9, 0.0032278693)]
menghan hu 10123 Menghan Hu 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/78 Figshare 2019 Security, Image, Dataset [(0, 0.003227627), (1, 0.0032279724), (2, 0.0032273855), (3, 0.0032273685), (4, 0.080703504), (5, 0.56926095), (6, 0.0032276742), (7, 0.20843183), (8, 0.122237824), (9, 0.0032278693)]
menghan hu 10982 Menghan Hu 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/471 figshare 2019 Dataset, (Matlab), recoloring, images [(0, 0.0026330969), (1, 0.0026333318), (2, 0.0026331504), (3, 0.0026329572), (4, 0.0026330606), (5, 0.0026335241), (6, 0.002632965), (7, 0.0026331733), (8, 0.9763012), (9, 0.0026335309)]
merckx thomas 10154 Merckx Thomas 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/91 ceausu silvia, sossai esther, sapage manuel, murilo miranda, pereira henrique m. Figshare 2018 JournalInformation [(0, 0.010002942), (1, 0.6484298), (2, 0.01000229), (3, 0.010002037), (4, 0.010002819), (5, 0.0100023635), (6, 0.27154213), (7, 0.010004771), (8, 0.010006264), (9, 0.010004547)]
mercuri alessia 10842 Mercuri Alessia 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
michael b. berkman 11268 Michael B. Berkman 86803240, 17744445 https://www.aifb.kit.edu/web/DSKG/dataset/2049 eric plutzer 2007 National, Survey, School, Biology, Teachers [(0, 0.025009433), (1, 0.7749374), (2, 0.02500641), (3, 0.025013493), (4, 0.025005233), (5, 0.025005233), (6, 0.02500608), (7, 0.025005233), (8, 0.025006244), (9, 0.025005233)]
michael fekadu 11160 Michael Fekadu 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/559 painter [(0, 0.0031262804), (1, 0.003126927), (2, 0.003126284), (3, 0.0031262895), (4, 0.7149063), (5, 0.003126531), (6, 0.0031263158), (7, 0.0031268871), (8, 0.17194219), (9, 0.09126601)]
michael lee 10888 Michael Lee https://www.aifb.kit.edu/web/DSKG/dataset/430 alexander perkins, perkins alexander, tanentzapf guy, guy tanentzapf, lee michael figshare 2019 Data.xlsx [(0, 0.38986102), (1, 0.0025018675), (2, 0.002502987), (3, 0.0025023213), (4, 0.0025019143), (5, 0.0025020312), (6, 0.0025019953), (7, 0.28618985), (8, 0.30643418), (9, 0.0025018284)]
michael o. emerson 11269 Michael O. Emerson 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2050 2000 Lilly, Survey, Attitudes, Social, Networks [(0, 0.020006657), (1, 0.020001652), (2, 0.020011185), (3, 0.020001352), (4, 0.020002807), (5, 0.020001467), (6, 0.8199697), (7, 0.020001775), (8, 0.020001352), (9, 0.02000207)]
michael pawlus 10808 Michael Pawlus 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/409 Global, Causes, Mortality [(0, 0.0071463888), (1, 0.21573168), (2, 0.0071450956), (3, 0.0071450085), (4, 0.007147467), (5, 0.007145501), (6, 0.0071456605), (7, 0.007147983), (8, 0.0071470304), (9, 0.72709817)]
miguet paul 10148 Miguet Paul 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/88 lavigne claire Dryad Digital Repository 2017 dataset [(0, 0.17261122), (1, 0.0058898493), (2, 0.21657047), (3, 0.0058890698), (4, 0.0058876984), (5, 0.0058876434), (6, 0.0058876406), (7, 0.15128541), (8, 0.005888609), (9, 0.42420235)]
mike ortman 11164 Mike Ortman 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/565 Wikipedia, Sentences [(0, 0.0017248342), (1, 0.0017250532), (2, 0.001724827), (3, 0.0017249607), (4, 0.0017248839), (5, 0.0017248328), (6, 0.0017247858), (7, 0.0017249841), (8, 0.040176302), (9, 0.9460245)]
milana giuliano 10843 Milana Giuliano 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
miller meghan samantha 10060 Miller Meghan Samantha 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/32 cooper catherine m., moresi louis Figshare 2016 Figure3A [(0, 0.0040064887), (1, 0.45549652), (2, 0.0040064747), (3, 0.0040063784), (4, 0.0040062894), (5, 0.004006809), (6, 0.00400691), (7, 0.0040081823), (8, 0.5124489), (9, 0.0040070303)]
milun tesovic 11211 Milun Tesovic https://www.aifb.kit.edu/web/DSKG/dataset/1122 MetroLyrics [(0, 0.5248572), (1, 0.025027456), (2, 0.025018735), (3, 0.025018737), (4, 0.025018735), (5, 0.025018735), (6, 0.025018735), (7, 0.025019612), (8, 0.2749833), (9, 0.025018735)]
mimouni mohamed 11059 Mimouni Mohamed 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
mira antonietta 10081 Mira Antonietta 33923547 https://www.aifb.kit.edu/web/DSKG/dataset/49 maire florian, friel nial Figshare 2019 Adaptive, Incremental, Mixture, Markov, Chain, Monte, Carlo [(0, 0.0010535594), (1, 0.0010535887), (2, 0.0010535251), (3, 0.6922657), (4, 0.035224542), (5, 0.0010534284), (6, 0.0010534169), (7, 0.0010536773), (8, 0.26513505), (9, 0.0010535433)]
mishima nobuo 10647 Mishima Nobuo 144133560, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/323 nattasit srinurak Figshare 2017 Chiangsaen [(0, 0.01668399), (1, 0.51323867), (2, 0.016683122), (3, 0.35329628), (4, 0.016681924), (5, 0.016680941), (6, 0.016680552), (7, 0.016684195), (8, 0.016688157), (9, 0.016682196)]
mishra puneet 11072 Mishra Puneet 41008148, 127413603, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/503 University of Strathclyde 2018 Hyperspectral, images [(0, 0.6628468), (1, 0.0027802805), (2, 0.002779672), (3, 0.0027795832), (4, 0.002780075), (5, 0.0027796633), (6, 0.0027798326), (7, 0.0027801383), (8, 0.3149139), (9, 0.0027801131)]
mitchell reynolds 10723 Mitchell Reynolds 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/367 Multidimensional, Poverty, Measures [(0, 0.0002690266), (1, 0.8845015), (2, 0.00026905318), (3, 0.017638255), (4, 0.00026903057), (5, 0.0002690237), (6, 0.00026904055), (7, 0.09423413), (8, 0.00026908747), (9, 0.0020118358)]
mitesh kumar singh 10102 Mitesh Kumar Singh 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/66 Bollywood, Movie, Dataset [(0, 0.0009811962), (1, 0.0009814063), (2, 0.0009813407), (3, 0.0009811883), (4, 0.22725932), (5, 0.55249804), (6, 0.0009811762), (7, 0.16289005), (8, 0.051464934), (9, 0.0009813653)]
miwa ahlstrom 11219 Miwa Ahlström 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/1496 kim ahlstrom Jisho [(0, 0.1), (1, 0.1), (2, 0.1), (3, 0.1), (4, 0.1), (5, 0.1), (6, 0.1), (7, 0.1), (8, 0.1), (9, 0.1)]
mock c. j. 10553 Mock C. J. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mok h. y., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
mohades zia 10324 Mohades Zia 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/194 das samir, madjar cecile, sengupta ayan 2016 LORIS:, DICOM, anonymizer [(0, 0.0014721883), (1, 0.001472288), (2, 0.50277686), (3, 0.001471915), (4, 0.0014721786), (5, 0.0014722317), (6, 0.052457307), (7, 0.001472282), (8, 0.4344605), (9, 0.0014722854)]
mohamed loey 10257 Mohamed Loey 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/153 Arabic, Handwritten, Characters, Dataset [(0, 0.054418564), (1, 0.0005962749), (2, 0.049675055), (3, 0.0005964781), (4, 0.00059620116), (5, 0.000596167), (6, 0.0005961279), (7, 0.0005961946), (8, 0.51685256), (9, 0.37547636)]
mohamed loey 11189 Mohamed Loey 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/588 Arabic, Handwritten, Digits, Dataset [(0, 0.0006213957), (1, 0.00062146154), (2, 0.05429042), (3, 0.00062138174), (4, 0.0006214555), (5, 0.00062137406), (6, 0.0006214276), (7, 0.00062147883), (8, 0.39639562), (9, 0.544964)]
mok h. y. 10554 Mok H. Y. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., rodwell m. j., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
molineris ivan 10460 Molineris Ivan 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/243 zanivan sara, cascone ilaria, peyron chiara, marchio serena, caselle michele, bussolino federico Figshare 2011 Non-synchronized, cells [(0, 0.44257465), (1, 0.25085744), (2, 0.2832089), (3, 0.0033364112), (4, 0.0033369483), (5, 0.0033370678), (6, 0.0033364734), (7, 0.003336802), (8, 0.003337486), (9, 0.0033377972)]
moller marco 10376 Möller Marco 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/222 moller rebecca PANGAEA - Data Publisher for Earth & Environmental Science 2018 cover, across, Nordenskiöldland,, Svalbard,, point, measurements, during, 2014-2016,, supplement, Möller,, Marco;, Möller,, Rebecca, review):, cover, variability, across, glaciers, Nordenskiöldland, (Svalbard), point, measurements, 2014–2016., Earth, System, Science, Discussions, [(0, 0.0010423474), (1, 0.0010424363), (2, 0.0010423786), (3, 0.0010423396), (4, 0.012299573), (5, 0.0010424652), (6, 0.0010424504), (7, 0.18283632), (8, 0.7975673), (9, 0.0010423572)]
moller rebecca 10377 Möller Rebecca 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/222 moller marco PANGAEA - Data Publisher for Earth & Environmental Science 2018 cover, across, Nordenskiöldland,, Svalbard,, point, measurements, during, 2014-2016,, supplement, Möller,, Marco;, Möller,, Rebecca, review):, cover, variability, across, glaciers, Nordenskiöldland, (Svalbard), point, measurements, 2014–2016., Earth, System, Science, Discussions, [(0, 0.0010423474), (1, 0.0010424363), (2, 0.0010423786), (3, 0.0010423396), (4, 0.012299573), (5, 0.0010424652), (6, 0.0010424504), (7, 0.18283632), (8, 0.7975673), (9, 0.0010423572)]
monaghan a. j. 11120 Monaghan A. J. https://www.aifb.kit.edu/web/DSKG/dataset/531 bruyere c. l., yates d. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2014 Global, Bias-Corrected, CMIP5, Output, Support, WRF/MPAS, Research [(0, 0.14588985), (1, 0.000827357), (2, 0.0008272533), (3, 0.00082737295), (4, 0.0008273714), (5, 0.5137526), (6, 0.0008272674), (7, 0.1004182), (8, 0.23497531), (9, 0.0008274139)]
monika munjal 10472 Monika Munjal 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/251 Triaging [(0, 0.014298562), (1, 0.8712938), (2, 0.014298806), (3, 0.014311053), (4, 0.014298675), (5, 0.014300217), (6, 0.0142990835), (7, 0.01429844), (8, 0.0142993415), (9, 0.014302013)]
montgomerie robert 11145 Montgomerie Robert 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/546 rosengrave patrice, gemmell neil Dryad Digital Repository 2016 TRIOML [(0, 0.005561343), (1, 0.005561435), (2, 0.43266365), (3, 0.0055620717), (4, 0.0055612205), (5, 0.3596398), (6, 0.16876595), (7, 0.005561997), (8, 0.0055610673), (9, 0.005561497)]
montgomery kelsey s. 10410 Montgomery Kelsey S. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k., peters mette a. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
mooney meghan 10099 Mooney Meghan https://www.aifb.kit.edu/web/DSKG/dataset/63 sigrin ben National Renewable Energy Laboratory - Data, NREL-DATA, Golden, CO (United States, National Renewable Energy Laboratory 1970 Rooftop, Energy, Potential, Income, Communities, America, REPLICA [(0, 0.67787826), (1, 0.0008413116), (2, 0.0008411778), (3, 0.00084105675), (4, 0.000841112), (5, 0.00084113044), (6, 0.0008412673), (7, 0.040487234), (8, 0.27574626), (9, 0.00084122055)]
moore jonathan d. 10611 Moore Jonathan D. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/299 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.06490304), (1, 0.1070259), (2, 0.18610051), (3, 0.3643822), (4, 0.0011773852), (5, 0.0011773492), (6, 0.0011774445), (7, 0.0011774695), (8, 0.27170125), (9, 0.0011774856)]
moore jonathan d. 10692 Moore Jonathan D. https://www.aifb.kit.edu/web/DSKG/dataset/351 nigel j., gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.0024406072), (1, 0.0024404959), (2, 0.48463523), (3, 0.3690657), (4, 0.0024402626), (5, 0.0024400789), (6, 0.0024400258), (7, 0.0024401515), (8, 0.12921718), (9, 0.0024402505)]
moore kent 10504 Moore Kent 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
morais camilo 10281 Morais Camilo 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/163 lima kassio Figshare 2018 Fungi, Dataset [(0, 0.004767363), (1, 0.95708877), (2, 0.004767364), (3, 0.004767717), (4, 0.0047672777), (5, 0.0047683013), (6, 0.004768141), (7, 0.0047679446), (8, 0.0047682533), (9, 0.004768903)]
moresi louis 10061 Moresi Louis 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/32 cooper catherine m., miller meghan samantha Figshare 2016 Figure3A [(0, 0.0040064887), (1, 0.45549652), (2, 0.0040064747), (3, 0.0040063784), (4, 0.0040062894), (5, 0.004006809), (6, 0.00400691), (7, 0.0040081823), (8, 0.5124489), (9, 0.0040070303)]
mota lucie 10244 Mota Lucie 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/147 torices ruben, loureiro joao Figshare 2016 chromosome, number, polymorphism [(0, 0.22323138), (1, 0.0038523844), (2, 0.0038538051), (3, 0.0038524563), (4, 0.0038516119), (5, 0.0038514119), (6, 0.0038521749), (7, 0.0038523455), (8, 0.74595094), (9, 0.0038514761)]
mouchet maud 10237 Mouchet Maud 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/144 turkelboom francis, byczek coline, meersmans jeroen, lavorel sandra Dryad Digital Repository 2015 Richness, ecosystem, services [(0, 0.0038500698), (1, 0.3646028), (2, 0.0038500747), (3, 0.079086386), (4, 0.31043294), (5, 0.003849183), (6, 0.22277877), (7, 0.0038496633), (8, 0.0038506726), (9, 0.0038494663)]
moumi nazifa ahmed 10033 Moumi Nazifa Ahmed 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/20 Figshare 2019 differentiation [(0, 0.001695708), (1, 0.0016959035), (2, 0.7190793), (3, 0.001695496), (4, 0.0016958371), (5, 0.0016956308), (6, 0.001695614), (7, 0.001696131), (8, 0.26735452), (9, 0.001695859)]
mrdjenovich david 10443 Mrdjenovich David 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/240 chen wei, persson kristin, ballouz eric, liu miao, winston donald, graf tanja, thomas d., prinz fritz b. Figshare 2018 Dielectric, Constant [(0, 0.0020839851), (1, 0.002084241), (2, 0.0020839015), (3, 0.81947345), (4, 0.0020839167), (5, 0.0020840997), (6, 0.002084219), (7, 0.002084031), (8, 0.16385399), (9, 0.0020841232)]
mucke thomas 10189 Mücke Thomas 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/115 fichter andreas, ritschl lucas, humbs martin, luppa peter, wolff klaus-dietrich Dryad Digital Repository 2016 Minimal, dataset [(0, 0.0027062823), (1, 0.3120456), (2, 0.0027061522), (3, 0.002705297), (4, 0.0027060604), (5, 0.002705573), (6, 0.66630715), (7, 0.002706259), (8, 0.002705882), (9, 0.0027057636)]
muhannad 11242 Muhannad 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/1952 anthony g., david c. 2017 Leeds, Robotic, Commands [(0, 0.005265901), (1, 0.22510047), (2, 0.005265686), (3, 0.0052663367), (4, 0.066082515), (5, 0.0052658054), (6, 0.005265824), (7, 0.005265751), (8, 0.00526681), (9, 0.6719549)]
muller christoph 10362 Müller Christoph https://www.aifb.kit.edu/web/DSKG/dataset/210 rolinski susanne GFZ Data Services 2018 global, gridded, tillage [(0, 0.0007581869), (1, 0.0007583907), (2, 0.0007585621), (3, 0.000758187), (4, 0.0007581495), (5, 0.00075824035), (6, 0.0007583015), (7, 0.21701437), (8, 0.000758298), (9, 0.77691936)]
muller guido 10868 Müller Guido 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/416 schwarz matthias, wild martin, ohmura atsumu, schar christoph, folini doris, hakuba maria z, lorenzo arturo PANGAEA - Data Publisher for Earth & Environmental Science 2017 Global, Energy, Balance, Archive, (GEBA), version, 2017:, database, worldwide, measured, surface, energy, fluxes., database, files,, supplement, Wild,, Martin;, Ohmura,, Atsumu;, Schär,, Christoph;, Müller,, Guido;, Folini,, Doris;, Schwarz,, Matthias;, Hakuba,, Maria, Sanchez-Lorenzo,, Arturo, (2017):, Global, Energy, Balance, Archive, (GEBA), version, 2017:, database, worldwide, measured, surface, energy, fluxes., Earth, System, Science, Data,, 9(2),, 601-613 [(0, 0.08709674), (1, 0.0008006429), (2, 0.00080067), (3, 0.00080083293), (4, 0.00080070284), (5, 0.092057034), (6, 0.00080055185), (7, 0.28708142), (8, 0.52896065), (9, 0.00080073724)]
mulmenstadt johannes 10316 Mülmenstädt Johannes 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/193 sourdeval odran, henderson david s., l'ecuyer tristan s., russell lynn m. World Data Center for Climate 2018 Using, CALIOP, estimate, cloud-field, height, uncertainty:, Cloud, Altitude, Spatial, Extrapolator, (CBASE), algorithm, dataset [(0, 0.0011245287), (1, 0.0011244992), (2, 0.0011243506), (3, 0.0011243452), (4, 0.0011243349), (5, 0.8128101), (6, 0.0011243607), (7, 0.17819458), (8, 0.0011245662), (9, 0.0011243491)]
murilo miranda 10157 Murilo Miranda 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/91 ceausu silvia, merckx thomas, sossai esther, sapage manuel, pereira henrique m. Figshare 2018 JournalInformation [(0, 0.010002942), (1, 0.6484298), (2, 0.01000229), (3, 0.010002037), (4, 0.010002819), (5, 0.0100023635), (6, 0.27154213), (7, 0.010004771), (8, 0.010006264), (9, 0.010004547)]
muschelli john 10920 Muschelli John 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/448 2018 [(0, 0.0066682505), (1, 0.0066697313), (2, 0.93998224), (3, 0.0066681653), (4, 0.0066681113), (5, 0.006668687), (6, 0.0066688373), (7, 0.006668434), (8, 0.0066689746), (9, 0.0066685304)]
muwei li 10630 Muwei Li 41008148, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/311 Figshare 2018 rawdata [(0, 0.8999508), (1, 0.011117273), (2, 0.011120517), (3, 0.01111676), (4, 0.0111157745), (5, 0.011114459), (6, 0.011114319), (7, 0.0111157745), (8, 0.01111882), (9, 0.011115548)]
myles o'neill 10919 Myles O'Neill https://www.aifb.kit.edu/web/DSKG/dataset/447 Thrones [(0, 0.001064268), (1, 0.990421), (2, 0.0010642556), (3, 0.001064297), (4, 0.0010643158), (5, 0.0010643037), (6, 0.0010643671), (7, 0.0010643438), (8, 0.0010644525), (9, 0.0010644229)]
myles o'neill 11119 Myles O'Neill 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/530 World, Warcraft, Avatar, History [(0, 0.033176765), (1, 0.045230344), (2, 0.0006294053), (3, 0.00062932126), (4, 0.00062947354), (5, 0.0006294562), (6, 0.000629354), (7, 0.0006293668), (8, 0.90868354), (9, 0.009133037)]
myles o'neill 11187 Myles O'Neill 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/585 Drosophila, Melanogaster, Genome [(0, 0.6285401), (1, 0.12869275), (2, 0.0002705652), (3, 0.00027044045), (4, 0.061260633), (5, 0.00027044644), (6, 0.00027045593), (7, 0.0002704678), (8, 0.17988366), (9, 0.00027047732)]
n. meekings kiran 10880 N. Meekings Kiran 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/425 leipzig jeremy, p. taylor graham, r. m. bangham charles Dryad Digital Repository 2016 Datasets, study [(0, 0.005564661), (1, 0.0055636633), (2, 0.46103227), (3, 0.005563212), (4, 0.0055632675), (5, 0.005562972), (6, 0.0055633644), (7, 0.49445632), (8, 0.005563717), (9, 0.005566529)]
naccio deborah di 10834 Naccio Deborah Di 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
napolitano constanza 10753 Napolitano Constanza 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/388 diaz diego, sanderson jim, e. johnson warren, ritland kermit Dryad Digital Repository 2015 Mitochondrial, sequences [(0, 0.21765882), (1, 0.0040049045), (2, 0.33959502), (3, 0.0040048095), (4, 0.41471362), (5, 0.0040042032), (6, 0.004004108), (7, 0.004004782), (8, 0.004005344), (9, 0.004004384)]
nathan cohen 10215 Nathan Cohen 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/127 Cardiotocography [(0, 0.003707336), (1, 0.0037084597), (2, 0.0037072296), (3, 0.0037078648), (4, 0.0037078827), (5, 0.0037072615), (6, 0.42512468), (7, 0.0037080774), (8, 0.54521364), (9, 0.0037075365)]
nattasit srinurak 10646 Nattasit Srinurak 144133560, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/323 mishima nobuo Figshare 2017 Chiangsaen [(0, 0.01668399), (1, 0.51323867), (2, 0.016683122), (3, 0.35329628), (4, 0.016681924), (5, 0.016680941), (6, 0.016680552), (7, 0.016684195), (8, 0.016688157), (9, 0.016682196)]
navarro velez kimberly 10524 Navarro Velez Kimberly 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/269 kikuchi david Dryad Digital Repository 2018 DataA1 [(0, 0.37319803), (1, 0.07065288), (2, 0.005564363), (3, 0.005565225), (4, 0.00556296), (5, 0.0055637364), (6, 0.0055633564), (7, 0.51720107), (8, 0.00556468), (9, 0.005563683)]
navneet surana 10258 Navneet Surana https://www.aifb.kit.edu/web/DSKG/dataset/154 AnimalDataset [(0, 0.007702904), (1, 0.007703078), (2, 0.007702667), (3, 0.0077023795), (4, 0.34745094), (5, 0.0077027315), (6, 0.007702311), (7, 0.00770308), (8, 0.5909251), (9, 0.007704762)]
ndwiga stanley 10765 Ndwiga Stanley 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/390 legese mekuria, tobias fr de wit, spieker nicole, koech ramona, nyarango robert, fenenga christine j. figshare 2019 Analyzing, digital, healthcare, exchange, platform, surveillance, antibiotic, prescriptions, primary, urban, Kenya:, mixed-methods, study [(0, 0.0090974895), (1, 0.009099293), (2, 0.009098916), (3, 0.009097519), (4, 0.009104664), (5, 0.009097751), (6, 0.009100963), (7, 0.9181042), (8, 0.009101116), (9, 0.009098127)]
neeraj kasturi 10227 Neeraj Kasturi https://www.aifb.kit.edu/web/DSKG/dataset/142 train.csv [(0, 0.005882735), (1, 0.005882797), (2, 0.0058825742), (3, 0.005882611), (4, 0.00588283), (5, 0.0058827), (6, 0.0058826334), (7, 0.005882794), (8, 0.0058828345), (9, 0.94705546)]
nelkin e. j. 10197 Nelkin E. J. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/119 huffman g. j., bolvin d. t., adler r. f. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 Version, Combined, Precipitation [(0, 0.0005750675), (1, 0.00057512365), (2, 0.00057504704), (3, 0.015637718), (4, 0.0262197), (5, 0.14349507), (6, 0.00057506375), (7, 0.7978044), (8, 0.000575174), (9, 0.013967618)]
nemes elisa 10900 Nemes Elisa 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/435 rodo miguel, rozot virginie, hatherill mark, dintwe one b. Figshare 2019 Megapool [(0, 0.0038491406), (1, 0.0038491774), (2, 0.9653577), (3, 0.0038484617), (4, 0.0038499017), (5, 0.0038489315), (6, 0.003849372), (7, 0.003848817), (8, 0.0038493455), (9, 0.0038491841)]
nesterova nataliia 10622 Nesterova Nataliia 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/301 makarieva olga, shikhov andrey, ostashov andrey PANGAEA - Data Publisher for Earth & Environmental Science 2018 Aufeis, (naleds), North-East, Russia:, catalogue, Indigirka, River, basin,, supplement, Makarieva,, Olga;, Shikhov,, Andrey;, Nesterova,, Nataliia;, Ostashov,, Andrey, (2019):, Historical, recent, aufeis, Indigirka, River, basin, (Russia)., Earth, System, Science, Data,, 11(1),, 409-420 [(0, 0.0011243594), (1, 0.18423253), (2, 0.001124277), (3, 0.0011243367), (4, 0.0011244587), (5, 0.0011244505), (6, 0.32737187), (7, 0.027727371), (8, 0.45392194), (9, 0.0011244246)]
neves junior angelo batista 10256 Neves Júnior Angelo Batista 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/151 leme luiz andre Figshare 2017 Dataset, Descriptions [(0, 0.0011000651), (1, 0.24881066), (2, 0.0011001306), (3, 0.001099848), (4, 0.0010999879), (5, 0.0011000679), (6, 0.0011001813), (7, 0.7423889), (8, 0.0011001531), (9, 0.0010999878)]
nevo noa 10714 Nevo Noa 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/363 toubiana david, samani talya, batushansky albert, sikron noga, saranga yehoshua, fait aaron Figshare 2016 Additional, Table [(0, 0.0033348186), (1, 0.003336347), (2, 0.1180632), (3, 0.8552586), (4, 0.003334381), (5, 0.0033344324), (6, 0.0033343637), (7, 0.0033347586), (8, 0.0033346822), (9, 0.0033344477)]
newburn a. 10473 Newburn A. 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/254 University College Dublin, National Folklore Foundation, University College Dublin, National Folklore Foundation, University College Dublin, National Folklore Foundation, University College Dublin, National Folklore Foundation 2017 [(0, 0.005888929), (1, 0.2625019), (2, 0.0058895), (3, 0.0058903233), (4, 0.005889478), (5, 0.0058891824), (6, 0.0058889645), (7, 0.005888938), (8, 0.6903827), (9, 0.0058900868)]
nghia t. 10350 Nghia T. https://www.aifb.kit.edu/web/DSKG/dataset/202 robert c., drakopoulos michael Figshare 2018 Visualization [(0, 0.011115753), (1, 0.011116267), (2, 0.011116247), (3, 0.011115246), (4, 0.011115288), (5, 0.80073434), (6, 0.011117472), (7, 0.011117259), (8, 0.11033636), (9, 0.011115719)]
nghia t. 10743 Nghia T. 41008148, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/384 robert c., drakopoulos michael Figshare 2018 Visualization [(0, 0.01000219), (1, 0.010003662), (2, 0.010003846), (3, 0.010003299), (4, 0.01000222), (5, 0.9099709), (6, 0.010003116), (7, 0.01000481), (8, 0.010003411), (9, 0.010002528)]
nghia t. 10992 Nghia T. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/477 robert c., drakopoulos michael Figshare 2018 Visualization [(0, 0.01003375), (1, 0.010034938), (2, 0.010034305), (3, 0.010035033), (4, 0.0100337835), (5, 0.7986364), (6, 0.010034821), (7, 0.010035625), (8, 0.12108741), (9, 0.010033935)]
nguyen thanh 10161 Nguyen Thanh 41008148, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/96 Figshare 2019 PatientDiagnosis [(0, 0.0071503115), (1, 0.007151332), (2, 0.007155431), (3, 0.0833349), (4, 0.104971245), (5, 0.0071497783), (6, 0.0071500265), (7, 0.0071517997), (8, 0.007151624), (9, 0.7616336)]
ni zhongfu 10736 Ni Zhongfu 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/379 yang hua, liu xinye, xin mingming, du jinkun, hu zhaorong, peng huiru, rossi vincenzo, sun qixin, yao yingyin Dryad Digital Repository 2016 Supplemental, Dataset [(0, 0.87141), (1, 0.0142872), (2, 0.014290962), (3, 0.014288103), (4, 0.014287115), (5, 0.014287165), (6, 0.014287392), (7, 0.014287283), (8, 0.014287304), (9, 0.014287489)]
nichols krista m. 10213 Nichols Krista M. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/123 hale matthew c., colletti john a., gahr scott a.,, scardina julie, thrower frank p., harmon matthew, carter megan, phillips ruth b., h. thorgaard gary Dryad Digital Repository 2014 mapping [(0, 0.004004699), (1, 0.0040043215), (2, 0.49930698), (3, 0.004006286), (4, 0.0040037967), (5, 0.0040038237), (6, 0.0040040216), (7, 0.004006944), (8, 0.004004246), (9, 0.4686549)]
nichols thomas 10098 Nichols Thomas https://www.aifb.kit.edu/web/DSKG/dataset/58 turner jessica Figshare 2017 trying [(0, 0.014296564), (1, 0.01429751), (2, 0.19402651), (3, 0.01429542), (4, 0.014296991), (5, 0.014295704), (6, 0.014295561), (7, 0.014296113), (8, 0.69160014), (9, 0.014299446)]
nichols thomas 10288 Nichols Thomas 86803240, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/167 Figshare 2017 Prospective, Harmonization [(0, 0.012510971), (1, 0.012511749), (2, 0.60818803), (3, 0.012509557), (4, 0.0125114275), (5, 0.012509872), (6, 0.012509722), (7, 0.012510376), (8, 0.29172367), (9, 0.012514639)]
nigel j. 10603 Nigel J. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/299 gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.06490304), (1, 0.1070259), (2, 0.18610051), (3, 0.3643822), (4, 0.0011773852), (5, 0.0011773492), (6, 0.0011774445), (7, 0.0011774695), (8, 0.27170125), (9, 0.0011774856)]
nigel j. 10684 Nigel J. https://www.aifb.kit.edu/web/DSKG/dataset/351 gifford miriam l., walker liam, boddington claire, jenkins dafyd j., wang ying, hulsmans jo, kumar sanjeev, moore jonathan d., carter anthony, samavedam siva, bonomo giovanni, hersh david s. Dryad Digital Repository 2017 Supplemental, Dataset [(0, 0.0024406072), (1, 0.0024404959), (2, 0.48463523), (3, 0.3690657), (4, 0.0024402626), (5, 0.0024400789), (6, 0.0024400258), (7, 0.0024401515), (8, 0.12921718), (9, 0.0024402505)]
nikhil parihar 11007 Nikhil Parihar 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/484 Twitter, sentiment, analysis [(0, 0.0055561615), (1, 0.005556129), (2, 0.005556001), (3, 0.005556241), (4, 0.005556227), (5, 0.0055564158), (6, 0.005556071), (7, 0.0055560702), (8, 0.0055561103), (9, 0.94999456)]
niko kohls 11248 Niko Kohls 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2042 george lewith, harald walach 2009 Exceptional, Experience, Questionnaire [(0, 0.025008453), (1, 0.025010178), (2, 0.025008908), (3, 0.5250633), (4, 0.02500879), (5, 0.025008596), (6, 0.025008453), (7, 0.025008604), (8, 0.2748663), (9, 0.025008453)]
niu lu 10370 Niu Lu 127313418 https://www.aifb.kit.edu/web/DSKG/dataset/215 gowan evan j, knorr gregor, lohmann gerrit PANGAEA - Data Publisher for Earth & Environmental Science 2018 Geology, datasets, North, America,, Greenland, surrounding, areas, sheet, models,, supplement, Gowan,, Knorr,, Gregor;, Lohmann,, Gerrit, (2019):, Geology, datasets, North, America,, Greenland, surrounding, areas, sheet, models., Earth, System, Science, Data,, 11(1),, 375-391 [(0, 0.003228117), (1, 0.00322831), (2, 0.0032279082), (3, 0.0032286241), (4, 0.0032280716), (5, 0.0032279247), (6, 0.6288874), (7, 0.34528613), (8, 0.0032285403), (9, 0.0032289536)]
niu shan-ce 10389 Niu Shan-Ce 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/225 xu qing, zhang guo-qiang, zhang yong-qiang, tsai wen-chieh, hsu jui-ling, liang chieh-kai, luo yi-bo, liu zhong-jian Dryad Digital Repository 2016 transcriptome, assembly [(0, 0.003851089), (1, 0.0038520696), (2, 0.21791379), (3, 0.0038512107), (4, 0.003852284), (5, 0.0038514584), (6, 0.0038511688), (7, 0.7512733), (8, 0.0038515604), (9, 0.003852084)]
noel benjamin 10050 Noel Benjamin 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/31 couloux arnaud, wincker patrick, jean marc, cruaud corinne, da silva corinne, lemainque arnaud, dutreux fabien', lapalu nicolas, linglin juliette, rouxel thierry, balesdent marie-helene Figshare 2018 Genomic, datasets [(0, 0.8874455), (1, 0.012505132), (2, 0.012504966), (3, 0.012509499), (4, 0.012504909), (5, 0.012505869), (6, 0.012506899), (7, 0.012505305), (8, 0.0125064375), (9, 0.012505492)]
noisette fanny 10062 Noisette Fanny 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/33 hurd catriona l PANGAEA - Data Publisher for Earth & Environmental Science 2018 Chlorophyll, Chlorophyll [(0, 0.0016687313), (1, 0.14204013), (2, 0.0016686523), (3, 0.03797855), (4, 0.0016684979), (5, 0.0016689851), (6, 0.5416166), (7, 0.13660572), (8, 0.13341567), (9, 0.0016684531)]
normandeau eric 10347 Normandeau Eric https://www.aifb.kit.edu/web/DSKG/dataset/201 lamaze fabien c., scott a., roy gabriel, garant dany Dryad Digital Repository 2014 [(0, 0.35711527), (1, 0.0035764824), (2, 0.29206797), (3, 0.32578537), (4, 0.0035753278), (5, 0.003576157), (6, 0.0035757662), (7, 0.0035761038), (8, 0.0035762836), (9, 0.0035752861)]
notestine randy 10814 Notestine Randy https://www.aifb.kit.edu/web/DSKG/dataset/410 jong maarten de, chen wei, asta mark, persson kristin, angsten thomas, gamst anthony, sluiter marcel, chaitanya krishna ande, sybrand van der, plata jose j., toher cormac, curtarolo stefano, ceder gerbrand Figshare 2018 Elastic, Tensor [(0, 0.0025006267), (1, 0.0025008286), (2, 0.0025004984), (3, 0.9774937), (4, 0.002500651), (5, 0.0025005413), (6, 0.0025006502), (7, 0.0025006433), (8, 0.0025011175), (9, 0.002500725)]
novikova jekaterina 10185 Novikova Jekaterina https://www.aifb.kit.edu/web/DSKG/dataset/113 rieser verena Heriot-Watt University 2017 Challenge, Dataset [(0, 0.0031294082), (1, 0.0031292634), (2, 0.003129353), (3, 0.0031288639), (4, 0.16321348), (5, 0.22108808), (6, 0.003129107), (7, 0.0031291822), (8, 0.46419445), (9, 0.13272882)]
ntsangwane lucky 11060 Ntsangwane Lucky 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
nurminen jussi 10862 Nurminen Jussi 144133560 https://www.aifb.kit.edu/web/DSKG/dataset/412 Figshare 2016 draft [(0, 0.0058897873), (1, 0.0058925077), (2, 0.005890194), (3, 0.19320096), (4, 0.0058893324), (5, 0.0058881887), (6, 0.005889198), (7, 0.005888985), (8, 0.7596819), (9, 0.005888976)]
nyarango robert 10764 Nyarango Robert 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/390 legese mekuria, tobias fr de wit, spieker nicole, koech ramona, ndwiga stanley, fenenga christine j. figshare 2019 Analyzing, digital, healthcare, exchange, platform, surveillance, antibiotic, prescriptions, primary, urban, Kenya:, mixed-methods, study [(0, 0.0090974895), (1, 0.009099293), (2, 0.009098916), (3, 0.009097519), (4, 0.009104664), (5, 0.009097751), (6, 0.009100963), (7, 0.9181042), (8, 0.009101116), (9, 0.009098127)]
ogihara hiroyuki 11061 Ogihara Hiroyuki 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
ohmura 11071 Ohmura 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
ohmura atsumu 10866 Ohmura Atsumu 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/416 schwarz matthias, wild martin, schar christoph, muller guido, folini doris, hakuba maria z, lorenzo arturo PANGAEA - Data Publisher for Earth & Environmental Science 2017 Global, Energy, Balance, Archive, (GEBA), version, 2017:, database, worldwide, measured, surface, energy, fluxes., database, files,, supplement, Wild,, Martin;, Ohmura,, Atsumu;, Schär,, Christoph;, Müller,, Guido;, Folini,, Doris;, Schwarz,, Matthias;, Hakuba,, Maria, Sanchez-Lorenzo,, Arturo, (2017):, Global, Energy, Balance, Archive, (GEBA), version, 2017:, database, worldwide, measured, surface, energy, fluxes., Earth, System, Science, Data,, 9(2),, 601-613 [(0, 0.08709674), (1, 0.0008006429), (2, 0.00080067), (3, 0.00080083293), (4, 0.00080070284), (5, 0.092057034), (6, 0.00080055185), (7, 0.28708142), (8, 0.52896065), (9, 0.00080073724)]
okahashi hisayo 10932 Okahashi Hisayo 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/452 yasuhara moriaki, iwatani hokuto, hunt gene, kase tomoki, hayashi hiroki, irizuki toshiaki, yolanda m., fernando allan gil s., renema willem Dryad Digital Repository 2016 Modern, dataset [(0, 0.006672621), (1, 0.0066716587), (2, 0.0066717216), (3, 0.0066711693), (4, 0.93995297), (5, 0.0066711684), (6, 0.0066711684), (7, 0.0066744406), (8, 0.0066717444), (9, 0.0066713416)]
olano xabier 11062 Olano Xabier 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olefs marc, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
olefs marc 11063 Olefs Marc 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, omori masao, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
olga belitskaya 10225 Olga Belitskaya 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/139 Style, Color, Images [(0, 0.0012204212), (1, 0.0012206159), (2, 0.0012204967), (3, 0.18380615), (4, 0.0012209142), (5, 0.0012204677), (6, 0.0012204085), (7, 0.00122058), (8, 0.8064293), (9, 0.0012206377)]
olsen aaron m. 10625 Olsen Aaron M. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/302 Dryad Digital Repository 2015 Appendix [(0, 0.0047666267), (1, 0.38219982), (2, 0.5796758), (3, 0.004765289), (4, 0.00476561), (5, 0.004765219), (6, 0.004765518), (7, 0.0047654686), (8, 0.004765448), (9, 0.0047652232)]
oltean mihai 10364 Oltean Mihai 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/213 2018 Fruits, dataset [(0, 0.00042233185), (1, 0.00042240747), (2, 0.23922627), (3, 0.00042238258), (4, 0.00042242112), (5, 0.0004224569), (6, 0.00042236442), (7, 0.00042237068), (8, 0.7573946), (9, 0.00042240907)]
omori masao 11064 Omori Masao 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, passamani lance, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
ong xuan hong 10675 Ong Xuan Hong 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/340 2015 quality, Dataset [(0, 0.050000347), (1, 0.05000101), (2, 0.050000347), (3, 0.050000347), (4, 0.54999566), (5, 0.050000947), (6, 0.050000347), (7, 0.050000347), (8, 0.050000347), (9, 0.050000347)]
orozco modesto 10018 Orozco Modesto 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/10 talavera david, cruz xavier de la Figshare 2011 training, testing [(0, 0.0018549295), (1, 0.4083764), (2, 0.13161956), (3, 0.0018543516), (4, 0.0018543502), (5, 0.0018544005), (6, 0.0018545777), (7, 0.0018546497), (8, 0.44702235), (9, 0.0018544622)]
ortiz fernanda 10064 Ortiz Fernanda https://www.aifb.kit.edu/web/DSKG/dataset/35 Figshare 2019 Salivary, sTREM-1, PGLYRP-1 [(0, 0.08365178), (1, 0.005889248), (2, 0.46012226), (3, 0.0058899736), (4, 0.00588823), (5, 0.005888225), (6, 0.0058887084), (7, 0.41500372), (8, 0.0058892653), (9, 0.0058885575)]
osborne francesco 10517 Osborne Francesco 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/264 Figshare 2016 evaluation [(0, 0.0020423068), (1, 0.5341403), (2, 0.017980784), (3, 0.002041689), (4, 0.0020428267), (5, 0.0020420216), (6, 0.06880297), (7, 0.079176225), (8, 0.28968897), (9, 0.0020419073)]
ostashov andrey 10624 Ostashov Andrey 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/301 makarieva olga, nesterova nataliia, shikhov andrey PANGAEA - Data Publisher for Earth & Environmental Science 2018 Aufeis, (naleds), North-East, Russia:, catalogue, Indigirka, River, basin,, supplement, Makarieva,, Olga;, Shikhov,, Andrey;, Nesterova,, Nataliia;, Ostashov,, Andrey, (2019):, Historical, recent, aufeis, Indigirka, River, basin, (Russia)., Earth, System, Science, Data,, 11(1),, 409-420 [(0, 0.0011243594), (1, 0.18423253), (2, 0.001124277), (3, 0.0011243367), (4, 0.0011244587), (5, 0.0011244505), (6, 0.32737187), (7, 0.027727371), (8, 0.45392194), (9, 0.0011244246)]
otis christian 11133 Otis Christian 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/539 lemieux claude, turmel monique Dryad Digital Repository 2014 Amino, dataset [(0, 0.43331352), (1, 0.005266097), (2, 0.5245582), (3, 0.0052660317), (4, 0.00526577), (5, 0.0052659), (6, 0.005265755), (7, 0.0052662822), (8, 0.005266398), (9, 0.0052660224)]
p. broderick michael 11100 P. Broderick Michael 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/521 j. anderson andrew, di liberto giovanni m., crosse michael j., c. lalor edmund Dryad Digital Repository 2018 Natural, Speech, Dataset [(0, 0.006258076), (1, 0.20466216), (2, 0.006258722), (3, 0.3663062), (4, 0.0062574036), (5, 0.17043236), (6, 0.13698627), (7, 0.006257527), (8, 0.0903242), (9, 0.006257092)]
p. goncalves bronner 10960 P. Gonçalves Bronner 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/459 kapulu melissa c. Dryad Digital Repository 2017 Membrane, feeding, assays [(0, 0.0040010163), (1, 0.0040014833), (2, 0.004001601), (3, 0.7769031), (4, 0.0040016016), (5, 0.004001), (6, 0.19108531), (7, 0.004001572), (8, 0.0040020025), (9, 0.004001353)]
p. taylor graham 10882 P. Taylor Graham 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/425 n. meekings kiran, leipzig jeremy, r. m. bangham charles Dryad Digital Repository 2016 Datasets, study [(0, 0.005564661), (1, 0.0055636633), (2, 0.46103227), (3, 0.005563212), (4, 0.0055632675), (5, 0.005562972), (6, 0.0055633644), (7, 0.49445632), (8, 0.005563717), (9, 0.005566529)]
p. van 10293 P. van 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/168 c. bagley justin, alda fernando, breitman maria f., bermingham eldredge, berghe eric, b. johnson jerald Dryad Digital Repository 2015 concatenated, mtDNA, dataset [(0, 0.12771718), (1, 0.004003189), (2, 0.0040033692), (3, 0.8402588), (4, 0.004002839), (5, 0.004002803), (6, 0.0040027713), (7, 0.0040029683), (8, 0.0040030032), (9, 0.004003113)]
paciello antonella 10855 Paciello Antonella 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
pagnacco giulio 10273 Pagnacco Giulio 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/159 lazzari barbara, frattini stefano, chessa stefania, talenti andrea, castiglioni bianca, marsan paolo, crepaldi paola, williams john, stella alessandra Figshare 2018 Additional [(0, 0.016672082), (1, 0.016670983), (2, 0.016673623), (3, 0.6832785), (4, 0.016671475), (5, 0.016670097), (6, 0.18334706), (7, 0.01667465), (8, 0.016671354), (9, 0.016670162)]
paolo ciccarese 11225 Paolo Ciccarese 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/1663 timothy w. clark, david shotton 2018 FRBR-aligned, Bibliographic, Ontology [(0, 0.8999837), (1, 0.011112398), (2, 0.011111713), (3, 0.011111792), (4, 0.011111667), (5, 0.011115927), (6, 0.011113126), (7, 0.011113128), (8, 0.011113001), (9, 0.011113599)]
papamichail dimitris 10129 Papamichail Dimitris 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/82 aschonitis vassilis g, mastrocicco micol, ghirardini andrea, kleoniki, colombani nicolo, castaldelli giuseppe, fano elisa-anna PANGAEA - Data Publisher for Earth & Environmental Science 2017 resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation,, links, ESRI-grid, files,, supplement, Aschonitis,, Vassilis, Papamichail,, Dimitris;, Demertzi,, Kleoniki;, Colombani,, Nicolo;, Mastrocicco,, Micol;, Ghirardini,, Andrea;, Castaldelli,, Giuseppe;, Fano,, Elisa-Anna, (2017):, High-resolution, global, grids, revised, Priestley-Taylor, Hargreaves-Samani, coefficients, assessing, ASCE-standardized, reference, evapotranspiration, solar, radiation., Earth, System, Science, Data,, 9(2),, 615-638 [(0, 0.0005132323), (1, 0.0005132701), (2, 0.00051321497), (3, 0.00051319704), (4, 0.00051321386), (5, 0.0005132613), (6, 0.028460743), (7, 0.2619134), (8, 0.6910191), (9, 0.015527402)]
pappalardo giuseppe 10572 Pappalardo Giuseppe https://www.aifb.kit.edu/web/DSKG/dataset/276 Figshare 2016 Accounting, Network [(0, 0.009111636), (1, 0.009106972), (2, 0.46433812), (3, 0.009106876), (4, 0.00911172), (5, 0.46278295), (6, 0.009111422), (7, 0.00910993), (8, 0.009107184), (9, 0.009113188)]
partridge linda 11175 Partridge Linda 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/574 eugene f, thornton janet m Figshare 2011 [(0, 0.6548074), (1, 0.057739757), (2, 0.0016137784), (3, 0.001613757), (4, 0.0016138017), (5, 0.0016137623), (6, 0.12236712), (7, 0.0016141419), (8, 0.1554026), (9, 0.0016138868)]
passamani lance 11065 Passamani Lance 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, pereira enio bueno, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
paul e. black 11206 Paul E. Black https://www.aifb.kit.edu/web/DSKG/dataset/969 National Institute of Standards and Technology Dictionary, Algorithms, Structures [(0, 0.81995624), (1, 0.020004598), (2, 0.02000448), (3, 0.020005042), (4, 0.020004684), (5, 0.02000448), (6, 0.020005537), (7, 0.02000448), (8, 0.02000539), (9, 0.020005053)]
paul frank 10952 Paul Frank 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/454 bolch tobias, tazio PANGAEA - Data Publisher for Earth & Environmental Science 2018 Glacier, inventory, Pamir, Karakoram,, files,, supplement, Mölg,, Nico;, Bolch,, Tobias;, Rastner,, Philipp;, Strozzi,, Tazio;, Paul,, Frank, (2018):, consistent, glacier, inventory, Karakoram, Pamir, derived, Landsat, data:, distribution, debris, cover, mapping, challenges., Earth, System, Science, Data,, 10(4),, 1807-1827 [(0, 0.0008070046), (1, 0.0008071417), (2, 0.0008070531), (3, 0.0008070165), (4, 0.0008070648), (5, 0.00080716313), (6, 0.00080702506), (7, 0.029993635), (8, 0.96354973), (9, 0.0008071782)]
paul mooney 10084 Paul Mooney 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/52 Breast, Histopathology, Images [(0, 0.0012673446), (1, 0.5667834), (2, 0.0012673171), (3, 0.0012671197), (4, 0.0012674511), (5, 0.0012670252), (6, 0.0012671549), (7, 0.0012671519), (8, 0.4011055), (9, 0.023240529)]
paul mooney 11188 Paul Mooney 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/587 Chest, X-Ray, Images, (Pneumonia)',, '5,863, images,, categories [(0, 0.03650979), (1, 0.0009911872), (2, 0.07967134), (3, 0.000990951), (4, 0.0009909502), (5, 0.0009909436), (6, 0.0009909198), (7, 0.0009911401), (8, 0.8269849), (9, 0.05088786)]
paya luis 10598 Paya Luis 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/295 Figshare 2017 omnidirectional, images [(0, 0.0011776118), (1, 0.72136426), (2, 0.0011780272), (3, 0.0011773834), (4, 0.0011773757), (5, 0.001177581), (6, 0.0011775317), (7, 0.0011775006), (8, 0.2692151), (9, 0.0011776042)]
payne sam 11131 Payne Sam 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/538 Figshare 2017 Blazing, Signature, Filter [(0, 0.000971654), (1, 0.0009716411), (2, 0.00097150035), (3, 0.012607692), (4, 0.000971645), (5, 0.00097149034), (6, 0.00097153825), (7, 0.00097158673), (8, 0.3035461), (9, 0.67704517)]
peigler richard 10326 Peigler Richard 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/195 dupuis julian, geib scott Dryad Digital Repository 2018 population, genetic, dataset [(0, 0.0058836117), (1, 0.0058837133), (2, 0.94704825), (3, 0.005884327), (4, 0.0058832876), (5, 0.0058832783), (6, 0.0058832257), (7, 0.005883502), (8, 0.0058834194), (9, 0.0058833356)]
peloso alessandro 10856 Peloso Alessandro 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
pemille clement vialatte de 10101 Pémille Clément Vialatte De 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/64 Figshare 2018 Supplementary, Table [(0, 0.005267731), (1, 0.005267638), (2, 0.0052667283), (3, 0.0052661845), (4, 0.0052703205), (5, 0.00526695), (6, 0.9525905), (7, 0.0052673668), (8, 0.0052695526), (9, 0.005267042)]
pemille clement vialatte de 10437 Pémille Clément Vialatte De 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/235 Figshare 2017 Supplementary, table [(0, 0.45971256), (1, 0.012511577), (2, 0.44023645), (3, 0.012504288), (4, 0.012504286), (5, 0.012504286), (6, 0.012504861), (7, 0.01250645), (8, 0.0125082405), (9, 0.012507046)]
pemille clement vialatte de 10578 Pémille Clément Vialatte De 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/280 Figshare 2018 Supplementary, Figure [(0, 0.14524493), (1, 0.0055681854), (2, 0.0055683665), (3, 0.005567878), (4, 0.25786522), (5, 0.0055671693), (6, 0.32075393), (7, 0.24272922), (8, 0.0055677723), (9, 0.0055673127)]
pemille clement vialatte de 10863 Pémille Clément Vialatte De 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/415 Figshare 2017 Supplementary, table [(0, 0.012509724), (1, 0.51670134), (2, 0.012506277), (3, 0.012502246), (4, 0.012502245), (5, 0.012502256), (6, 0.012506019), (7, 0.38326338), (8, 0.012504127), (9, 0.012502345)]
pemille clement vialatte de 10991 Pémille Clément Vialatte De 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/476 Figshare 2018 Supplementary, Table [(0, 0.01250971), (1, 0.51680344), (2, 0.012506277), (3, 0.0125022475), (4, 0.012502247), (5, 0.012502258), (6, 0.01250602), (7, 0.38316134), (8, 0.012504129), (9, 0.012502347)]
pemille clement vialatte de 11135 Pémille Clément Vialatte De 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/540 Figshare 2018 Supplementary, Table [(0, 0.4597025), (1, 0.012511579), (2, 0.4402465), (3, 0.012504288), (4, 0.012504286), (5, 0.012504286), (6, 0.012504861), (7, 0.01250645), (8, 0.0125082405), (9, 0.012507046)]
peng huiru 10733 Peng Huiru 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/379 yang hua, liu xinye, xin mingming, du jinkun, hu zhaorong, rossi vincenzo, sun qixin, ni zhongfu, yao yingyin Dryad Digital Repository 2016 Supplemental, Dataset [(0, 0.87141), (1, 0.0142872), (2, 0.014290962), (3, 0.014288103), (4, 0.014287115), (5, 0.014287165), (6, 0.014287392), (7, 0.014287283), (8, 0.014287304), (9, 0.014287489)]
peng shushi 10740 peng shushi 41008148, 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/382 ciais philippe, makowski david, li wei Figshare 2018 Reference, dataset [(0, 0.012517096), (1, 0.012518335), (2, 0.012516793), (3, 0.012516793), (4, 0.012516846), (5, 0.012516793), (6, 0.012517049), (7, 0.012517013), (8, 0.8873463), (9, 0.01251698)]
pereira enio bueno 11066 Pereira Enio Bueno 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/502 driemel amelie, cox christopher j, grobe hannes, schumacher stefanie, sieger rainer, konig-langlo gert, augustine john, behrens klaus, colle sergio, denn fred m, duprat thierry, dutton ellsworth g, fukuda masato, haeffelin martial, hodges gary, hyett nicole, ijima osamu, kallis ain, knap wouter, kustov vasilii, long charles, longenecker david, lupi angelo, mimouni mohamed, ntsangwane lucky, ogihara hiroyuki, olano xabier, olefs marc, omori masao, passamani lance, schmithusen holger, tamlyn jonathan, vogt roland, xia xiangao, ohmura PANGAEA - Data Publisher for Earth & Environmental Science 2018 Baseline, surface, radiation, (1992-2017),, supplement, Driemel,, Amelie;, Augustine,, John;, Behrens,, Klaus;, Colle,, Sergio;, Christopher, Cuevas-Agulló,, Emilio;, Denn,, Duprat,, Thierry;, Dutton,, Ellsworth, Fukuda,, Masato;, Grobe,, Hannes;, Haeffelin,, Martial;, Hodges,, Gary;, Hyett,, Nicole;, Ijima,, Osamu;, Kallis,, Knap,, Wouter;, Kustov,, Vasilii;, Lanconelli,, Christian;, Long,, Charles;, Longenecker,, David;, Lupi,, Angelo;, Maturilli,, Marion;, Mimouni,, Mohamed;, Ntsangwane,, Lucky;, Ogihara,, Hiroyuki;, Olano,, Xabier;, Olefs,, Marc;, Omori,, Masao;, Passamani,, Lance;, Pereira,, Bueno;, Schmithüsen,, Holger;, Schumacher,, Stefanie;, Sieger,, Rainer;, Tamlyn,, Jonathan;, Vogt,, Roland;, Vuilleumier,, Laurent;, Xiangao;, Ohmura,, Atsumu;, König-Langlo,, (2018):, Baseline, Surface, Radiation, Network, (BSRN):, structure, description, (1992-2017)., Earth, System, Science, Data,, 10(3),, 1491-1501 [(0, 0.002382665), (1, 0.0023826514), (2, 0.0023826768), (3, 0.0023825003), (4, 0.002382683), (5, 0.0023829876), (6, 0.15696645), (7, 0.36830464), (8, 0.45804945), (9, 0.0023833022)]
pereira henrique m. 10158 Pereira Henrique M. 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/91 ceausu silvia, merckx thomas, sossai esther, sapage manuel, murilo miranda Figshare 2018 JournalInformation [(0, 0.010002942), (1, 0.6484298), (2, 0.01000229), (3, 0.010002037), (4, 0.010002819), (5, 0.0100023635), (6, 0.27154213), (7, 0.010004771), (8, 0.010006264), (9, 0.010004547)]
perkins alexander 10890 Perkins Alexander https://www.aifb.kit.edu/web/DSKG/dataset/430 michael lee, alexander perkins, tanentzapf guy, guy tanentzapf, lee michael figshare 2019 Data.xlsx [(0, 0.38986102), (1, 0.0025018675), (2, 0.002502987), (3, 0.0025023213), (4, 0.0025019143), (5, 0.0025020312), (6, 0.0025019953), (7, 0.28618985), (8, 0.30643418), (9, 0.0025018284)]
perkins alexander 11148 Perkins Alexander https://www.aifb.kit.edu/web/DSKG/dataset/550 tanentzapf guy, lee michael Figshare 2012 Data.xlsx [(0, 0.34298214), (1, 0.025010163), (2, 0.025006233), (3, 0.025011513), (4, 0.4569462), (5, 0.025006233), (6, 0.025009178), (7, 0.025012821), (8, 0.025009297), (9, 0.025006233)]
pernet cr 10794 Pernet CR 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/400 gorgolewski kj, storkey a, wardlaw jm 2018 European, Soccer, Database [(0, 0.0005992316), (1, 0.08195699), (2, 0.00059930247), (3, 0.00059927406), (4, 0.00059926324), (5, 0.00059925223), (6, 0.00059926684), (7, 0.5338954), (8, 0.37995267), (9, 0.0005993351)]
persson kristin 10310 Persson Kristin 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/185 jong maarten de, chen wei, geerlings henry, asta mark Figshare 2018 Piezoelectric, Tensor [(0, 0.003704297), (1, 0.0037044964), (2, 0.0037042042), (3, 0.96666), (4, 0.003704217), (5, 0.0037043015), (6, 0.0037044443), (7, 0.003704447), (8, 0.003704843), (9, 0.0037047495)]
persson kristin 10442 Persson Kristin 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/240 chen wei, mrdjenovich david, ballouz eric, liu miao, winston donald, graf tanja, thomas d., prinz fritz b. Figshare 2018 Dielectric, Constant [(0, 0.0020839851), (1, 0.002084241), (2, 0.0020839015), (3, 0.81947345), (4, 0.0020839167), (5, 0.0020840997), (6, 0.002084219), (7, 0.002084031), (8, 0.16385399), (9, 0.0020841232)]
persson kristin 10812 Persson Kristin https://www.aifb.kit.edu/web/DSKG/dataset/410 jong maarten de, chen wei, asta mark, angsten thomas, notestine randy, gamst anthony, sluiter marcel, chaitanya krishna ande, sybrand van der, plata jose j., toher cormac, curtarolo stefano, ceder gerbrand Figshare 2018 Elastic, Tensor [(0, 0.0025006267), (1, 0.0025008286), (2, 0.0025004984), (3, 0.9774937), (4, 0.002500651), (5, 0.0025005413), (6, 0.0025006502), (7, 0.0025006433), (8, 0.0025011175), (9, 0.002500725)]
peter a. 11141 Peter A. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/545 jacobs grant h., warren p., chris m. Figshare 2011 available, species [(0, 0.16329685), (1, 0.30450198), (2, 0.001888647), (3, 0.04486971), (4, 0.0018884878), (5, 0.0018887892), (6, 0.0018884197), (7, 0.36945665), (8, 0.108431995), (9, 0.0018884961)]
peter h. raven 11208 Peter H. Raven 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/1067 de yuan hong, wu zhengyi Flora, China [(0, 0.54998887), (1, 0.050001763), (2, 0.05000014), (3, 0.05000801), (4, 0.050000507), (5, 0.05000014), (6, 0.05000014), (7, 0.05000014), (8, 0.05000014), (9, 0.05000014)]
peter j 10712 Peter J 127413603, 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/361 kyu-baek hwang, greenberg steve a Figshare 2011 schematic, procedure [(0, 0.7178245), (1, 0.001962523), (2, 0.0019623917), (3, 0.0019620636), (4, 0.0019624752), (5, 0.0019620068), (6, 0.001962115), (7, 0.0019626576), (8, 0.2664768), (9, 0.001962491)]
peter v. marsden 11250 Peter V. Marsden 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/2043 tom w. smith, james a. davis 1993 General, Social, Survey, [(0, 0.050000846), (1, 0.05000363), (2, 0.050000846), (3, 0.050000846), (4, 0.050000846), (5, 0.050000846), (6, 0.5499853), (7, 0.050005134), (8, 0.050000846), (9, 0.050000846)]
peter v. marsden 11253 Peter V. Marsden 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/2044 tom w. smith, james a. davis 1994 General, Social, Survey, [(0, 0.05000085), (1, 0.050003633), (2, 0.05000085), (3, 0.05000085), (4, 0.05000085), (5, 0.05000085), (6, 0.5499853), (7, 0.050005138), (8, 0.05000085), (9, 0.05000085)]
peter v. marsden 11258 Peter V. Marsden 144024400 https://www.aifb.kit.edu/web/DSKG/dataset/2046 tom w. smith, james a. davis 2002 General, Social, Survey, [(0, 0.050000846), (1, 0.05000363), (2, 0.050000846), (3, 0.050000846), (4, 0.050000846), (5, 0.050000846), (6, 0.5499853), (7, 0.050005138), (8, 0.050000846), (9, 0.050000846)]
peter v. marsden 11261 Peter V. Marsden 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/2047 tom w. smith, james a. davis 2004 General, Social, Survey, [(0, 0.050000846), (1, 0.05000363), (2, 0.050000846), (3, 0.050000846), (4, 0.050000846), (5, 0.050000846), (6, 0.5499853), (7, 0.050005134), (8, 0.050000846), (9, 0.050000846)]
peter v. marsden 11264 Peter V. Marsden 144024400, 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2048 tom w. smith, james a. davis 2006 General, Social, Survey, [(0, 0.050000846), (1, 0.05000363), (2, 0.050000846), (3, 0.050000846), (4, 0.050000846), (5, 0.050000846), (6, 0.5499853), (7, 0.050005134), (8, 0.050000846), (9, 0.050000846)]
peters mette a. 10432 Peters Mette A. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/231 hoffman gabriel e., bendl jaroslav, montgomery kelsey s., sloofman laura, ying-chih wang, hardik r. shah, hauberg mads e., johnson jessica s., girdhar kiran, lingyun song, fullard john f., kramer robin, chang-gyu hahn, gur raquel, marenco stefano, barbara k., lewis david a., haroutunian vahram, hemby scott, sullivan patrick, buxbaum joseph d., greg e., devlin bernie, solveig k. figshare 2019 Metadata, record, CommonMind, Consortium, provides, transcriptomic, epigenomic, Schizophrenia, Bipolar, Disorder [(0, 0.44647282), (1, 0.00834125), (2, 0.1517932), (3, 0.008340624), (4, 0.008340679), (5, 0.008340905), (6, 0.34334633), (7, 0.008341155), (8, 0.008342044), (9, 0.008340992)]
peyron chiara 10459 Peyron Chiara 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/243 zanivan sara, cascone ilaria, molineris ivan, marchio serena, caselle michele, bussolino federico Figshare 2011 Non-synchronized, cells [(0, 0.44257465), (1, 0.25085744), (2, 0.2832089), (3, 0.0033364112), (4, 0.0033369483), (5, 0.0033370678), (6, 0.0033364734), (7, 0.003336802), (8, 0.003337486), (9, 0.0033377972)]
pfeffer hauke 10171 Pfeffer Hauke 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/106 lombardot thierry, kottmann renzo, richter michael, teeling hanno, frank oliver Figshare 2011 Genomes, Mapserver [(0, 0.728574), (1, 0.0032283089), (2, 0.0032278574), (3, 0.0032276625), (4, 0.003227962), (5, 0.0032298383), (6, 0.0032279433), (7, 0.0032280644), (8, 0.24560077), (9, 0.0032275543)]
phillips ruth b. 10211 Phillips Ruth B. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/123 hale matthew c., colletti john a., gahr scott a.,, scardina julie, thrower frank p., harmon matthew, carter megan, h. thorgaard gary, nichols krista m. Dryad Digital Repository 2014 mapping [(0, 0.004004699), (1, 0.0040043215), (2, 0.49930698), (3, 0.004006286), (4, 0.0040037967), (5, 0.0040038237), (6, 0.0040040216), (7, 0.004006944), (8, 0.004004246), (9, 0.4686549)]
pible olivier 10940 Pible Olivier 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/453 cogne yannick, gouveia duarte, francois adeline, bouchez olivier, eche camille, ford alex, geffard olivier, armengaud jean, chaumot arnaud, almunia christine figshare 2019 Metadata, record, transcriptomes, gammarid, individuals, proteogenomic, analysis, seven, taxonomic, groups [(0, 0.0050043194), (1, 0.0050041666), (2, 0.0050037466), (3, 0.005003414), (4, 0.0050031887), (5, 0.0050032004), (6, 0.0050044227), (7, 0.0050036465), (8, 0.95496607), (9, 0.0050038155)]
pick christian 10379 Pick Christian 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/223 borner janus, thiede jenny, kolawole olatunji matthew, tanyi kingsley manchang, m. cottontail veronika, wellinghausen nele Dryad Digital Repository 2015 Concatenated, multigene, aignments [(0, 0.21523102), (1, 0.005003556), (2, 0.74474365), (3, 0.0050041066), (4, 0.005002706), (5, 0.0050027766), (6, 0.005002784), (7, 0.005003692), (8, 0.0050028167), (9, 0.005002891)]
pierce graham j. 10773 Pierce Graham J. https://www.aifb.kit.edu/web/DSKG/dataset/392 correia ana m., gandra miguel, liberal marcos, valente raul, agatha gil, rosso massimiliano figshare 2019 Metadata, record, dataset, cetacean, occurrences, Eastern, North, Atlantic [(0, 0.26775646), (1, 0.011120489), (2, 0.011119371), (3, 0.011119299), (4, 0.011123657), (5, 0.011119022), (6, 0.011122717), (7, 0.011119022), (8, 0.64327866), (9, 0.011121326)]
pierre nolot 11212 Pierre Nolot https://www.aifb.kit.edu/web/DSKG/dataset/1148 1994 Nolot [(0, 0.1), (1, 0.1), (2, 0.1), (3, 0.1), (4, 0.1), (5, 0.1), (6, 0.1), (7, 0.1), (8, 0.1), (9, 0.1)]
pimentel rafael 10165 Pimentel Rafael 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/99 herrero javier PANGAEA - Data Publisher for Earth & Environmental Science 2017 Cover, Fraction, (SCF), depth, obtained, using, terrestrial, photography, (2009-2013), control, Refugio, Poqueira, (Sierra, Nevada,, Spain),, supplement, Pimentel,, Rafael;, Herrero,, Javier;, Polo,, María, (2017):, Subgrid, parameterization, distribution, Mediterranean, using, terrestrial, photography., Hydrology, Earth, System, Sciences,, 21(2),, 805-820 [(0, 0.0009014949), (1, 0.0009016187), (2, 0.00090143416), (3, 0.00090148766), (4, 0.0009015965), (5, 0.00090143044), (6, 0.0009015426), (7, 0.99188626), (8, 0.000901622), (9, 0.0009015049)]
pimentel rafael 10885 Pimentel Rafael 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/426 herrero javier PANGAEA - Data Publisher for Earth & Environmental Science 2019 cover, Guadalfeo, Monitoring, Network, (Sierra, Nevada,, Spain),, supplement, Polo,, María, José;, Herrero,, Javier;, Pimentel,, Rafael;, Pérez-Palazón,, María, (2019):, Guadalfeo, Monitoring, Network, (Sierra, Nevada,, Spain):, years, measurements, understand, complexity, dynamics, semiarid, regions., Earth, System, Science, Data,, 11(1),, 393-407 [(0, 0.0021756443), (1, 0.0021757442), (2, 0.52362233), (3, 0.0021752922), (4, 0.002175405), (5, 0.0021757393), (6, 0.0021753625), (7, 0.4589723), (8, 0.0021764075), (9, 0.0021757442)]
plata jose j. 10819 Plata Jose J. https://www.aifb.kit.edu/web/DSKG/dataset/410 jong maarten de, chen wei, asta mark, persson kristin, angsten thomas, notestine randy, gamst anthony, sluiter marcel, chaitanya krishna ande, sybrand van der, toher cormac, curtarolo stefano, ceder gerbrand Figshare 2018 Elastic, Tensor [(0, 0.0025006267), (1, 0.0025008286), (2, 0.0025004984), (3, 0.9774937), (4, 0.002500651), (5, 0.0025005413), (6, 0.0025006502), (7, 0.0025006433), (8, 0.0025011175), (9, 0.002500725)]
plissard 11235 Plissard 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/1873 sebastien, erik, kouwenhoven, vincent, k., kun, frolov, zuo Research Data, 4TU.Centre 2012 Signatures, Majorana, fermions, hybrid, superconductor-semiconductor, nanowire, devices [(0, 0.020003892), (1, 0.020003892), (2, 0.020003892), (3, 0.020003892), (4, 0.020003892), (5, 0.020003892), (6, 0.81996495), (7, 0.020003892), (8, 0.020003892), (9, 0.020003892)]
poggi fabrizio 10857 Poggi Fabrizio 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
pohl moritz 10404 Pohl Moritz 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/229 causey dwight, stead david, martin samuel, secombes christopher Figshare 2018 Additional [(0, 0.6282684), (1, 0.008335959), (2, 0.00834176), (3, 0.30503765), (4, 0.008335613), (5, 0.008336173), (6, 0.008335856), (7, 0.008336423), (8, 0.008336499), (9, 0.00833565)]
pragathi priyadharsini balasubramani 10077 Pragathi Priyadharsini Balasubramani 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/47 hayden benjamin Figshare 2019 [(0, 0.058658145), (1, 0.0047677527), (2, 0.004768079), (3, 0.11417535), (4, 0.0047672363), (5, 0.004767358), (6, 0.1575636), (7, 0.23290406), (8, 0.41286096), (9, 0.0047674878)]
praktiknjo aaron 11034 Praktiknjo Aaron https://www.aifb.kit.edu/web/DSKG/dataset/497 ruhnau oliver figshare 2019 Metadata, record, series, demand, efficiency, energy, system, modeling [(0, 0.005557913), (1, 0.005557244), (2, 0.42391858), (3, 0.005557263), (4, 0.005557203), (5, 0.0055575003), (6, 0.53161997), (7, 0.005558123), (8, 0.0055585355), (9, 0.0055576977)]
pranay aryal 10220 Pranay Aryal 162324750, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/133 Hospital, Charges, Inpatients [(0, 0.0022744986), (1, 0.6253547), (2, 0.2070294), (3, 0.0022746406), (4, 0.15169302), (5, 0.0022746767), (6, 0.0022746527), (7, 0.0022747372), (8, 0.0022749703), (9, 0.0022747729)]
prescott william 10665 Prescott William 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/337 larkin daniel j., l. hipp andrew, kattge jens, tonietto rebecca k., jacobi sarah k., bowles marlin l. Dryad Digital Repository 2015 Community, phylogeny [(0, 0.27219525), (1, 0.6049329), (2, 0.0055617527), (3, 0.0055603785), (4, 0.0055585047), (5, 0.00555856), (6, 0.005558599), (7, 0.0055593955), (8, 0.08395417), (9, 0.0055605303)]
prinz fritz b. 10449 Prinz Fritz B. 121332964 https://www.aifb.kit.edu/web/DSKG/dataset/240 chen wei, persson kristin, mrdjenovich david, ballouz eric, liu miao, winston donald, graf tanja, thomas d. Figshare 2018 Dielectric, Constant [(0, 0.0020839851), (1, 0.002084241), (2, 0.0020839015), (3, 0.81947345), (4, 0.0020839167), (5, 0.0020840997), (6, 0.002084219), (7, 0.002084031), (8, 0.16385399), (9, 0.0020841232)]
probo massimiliano 11106 Probo Massimiliano 185592680, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/522 ravetto enri simone, renna manuela, caro eleonora, lussiana carola, lombardi giampiero, lonati michele Figshare 2018 Dataset.xlsx [(0, 0.0055587357), (1, 0.0055583618), (2, 0.005558879), (3, 0.81081873), (4, 0.0055576377), (5, 0.005557941), (6, 0.0055582672), (7, 0.14471501), (8, 0.0055579045), (9, 0.005558505)]
prospero simone 10656 Prospero Simone 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/332 javal marion, courtin claudine, kerdelhue carole, lombaert eric, tsykun tetyana, roques alain, roux geraldine Figshare 2019 Microsatellites, dataset [(0, 0.010009417), (1, 0.010015825), (2, 0.010018505), (3, 0.010009823), (4, 0.010009417), (5, 0.010009417), (6, 0.010009825), (7, 0.010010399), (8, 0.010009417), (9, 0.9098979)]
przybylak rajmund 10505 Przybylak Rajmund 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, richard, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
psomopoulos fotis 10781 Psomopoulos Fotis 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/396 ghouila figshare 2019 Introduction, Machine, Learning [(0, 0.18091582), (1, 0.0014505308), (2, 0.05437098), (3, 0.3209242), (4, 0.0014503406), (5, 0.001450275), (6, 0.001450453), (7, 0.0014504188), (8, 0.43508646), (9, 0.0014505751)]
pu fei 10590 Pu Fei 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/290 zhixiong zhou, liu bo, baohua chen, shi yue, huaqiang bai, leibin li, xu peng figshare 2019 Metadata, record, sequence, assembly, Takifugu, bimaculatus, genome, using, PacBio, technologies [(0, 0.31403518), (1, 0.004765449), (2, 0.004767349), (3, 0.0047654244), (4, 0.05541822), (5, 0.004765057), (6, 0.0047658132), (7, 0.0047651967), (8, 0.5971871), (9, 0.0047652577)]
pu fei 10975 Pu Fei 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/467 zhixiong zhou, baohua chen, huaqiang bai, xu peng, qiaozhen ke, yidi wu figshare 2019 Metadata, record, sequencing, assembly, Larimichthys, crocea, genome, using, PacBio, technologies [(0, 0.47701868), (1, 0.004002832), (2, 0.004003983), (3, 0.004002701), (4, 0.045470536), (5, 0.004002578), (6, 0.004003187), (7, 0.0040027876), (8, 0.44949004), (9, 0.00400268)]
pucillo stefania 10844 Pucillo Stefania 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
puglia rodolfo 10845 Puglia Rodolfo 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, riccio gaetano, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
pyles john 10108 Pyles John 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/71 chang nadine, marcus austin, abhinav gupta, tarr michael, aminoff elissa Figshare 2019 BOLD5000 [(0, 0.021280022), (1, 0.08836781), (2, 0.0005441114), (3, 0.00054414745), (4, 0.00054414535), (5, 0.00054410304), (6, 0.00054413086), (7, 0.034354564), (8, 0.8527328), (9, 0.00054415426)]
qiaozhen ke 10978 Qiaozhen Ke 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/467 zhixiong zhou, baohua chen, pu fei, huaqiang bai, xu peng, yidi wu figshare 2019 Metadata, record, sequencing, assembly, Larimichthys, crocea, genome, using, PacBio, technologies [(0, 0.47701868), (1, 0.004002832), (2, 0.004003983), (3, 0.004002701), (4, 0.045470536), (5, 0.004002578), (6, 0.004003187), (7, 0.0040027876), (8, 0.44949004), (9, 0.00400268)]
qiusheng wu 10252 Qiusheng Wu 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/149 xuecao li, yuyu zhou, meng lin, ghassem asrar, chaoqun lu Figshare 2019 dataset, 30-meter, annual, vegetation, phenology, indicators, (1985-2015), urban, areas, conterminous, United, States [(0, 0.001516307), (1, 0.73037845), (2, 0.0015163294), (3, 0.0015162535), (4, 0.0015162897), (5, 0.0015165778), (6, 0.0015167102), (7, 0.0015168199), (8, 0.25748992), (9, 0.0015164119)]
quan qing 10984 Quan Qing 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/473 wen zhixin, du yuanbao, xia lin, ge deyan, yang qisen Dryad Digital Repository 2016 Small, mammal, dataset [(0, 0.003851026), (1, 0.71095574), (2, 0.25824106), (3, 0.0038512235), (4, 0.0038500305), (5, 0.0038500158), (6, 0.0038501853), (7, 0.0038499627), (8, 0.0038505355), (9, 0.0038502412)]
quanyin hu 10078 Quanyin Hu 192562407, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/48 Figshare 2018 Data.xlsx [(0, 0.010013446), (1, 0.010011583), (2, 0.01001289), (3, 0.01001122), (4, 0.010011219), (5, 0.90988886), (6, 0.010015218), (7, 0.010011348), (8, 0.010013021), (9, 0.010011219)]
quedenau jorn 11129 Quedenau Jörn 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/534 schmale julia, kutzner rebecca d, von schneidemesser erika, kuik friderike, weatherhead betsy PANGAEA - Data Publisher for Earth & Environmental Science 2017 Black, Carbon, measurements, Germany, between, 2014,, netCDF, files,, supplement, Kutzner,, Rebecca, Schneidemesser,, Erika;, Kuik,, Friderike;, Quedenau,, Jörn;, Weatherhead,, Betsy;, Schmale,, Julia, (2018):, Long-term, monitoring, black, carbon, across, Germany., Atmospheric, Environment,, 41-52 [(0, 0.00053816754), (1, 0.12992172), (2, 0.17506847), (3, 0.0005381808), (4, 0.0066615767), (5, 0.00053821324), (6, 0.04955655), (7, 0.29004943), (8, 0.34658945), (9, 0.00053821853)]
r. chawla aarti 10006 R. Chawla Aarti 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/6 bouchut anne, jeffers victoria, hudmon andy, j. sullivan jr. william Dryad Digital Repository 2015 files [(0, 0.16967253), (1, 0.004352842), (2, 0.004354036), (3, 0.0043527065), (4, 0.0043533035), (5, 0.0043523936), (6, 0.004353722), (7, 0.7955036), (8, 0.0043524876), (9, 0.0043523554)]
r. grant jessica 10043 R. Grant Jessica https://www.aifb.kit.edu/web/DSKG/dataset/25 a. katz laura Dryad Digital Repository 2016 Table_S2 [(0, 0.24384438), (1, 0.0031292744), (2, 0.2856038), (3, 0.0031299852), (4, 0.35157695), (5, 0.10019745), (6, 0.0031291754), (7, 0.003130415), (8, 0.0031296439), (9, 0.0031289184)]
r. m. bangham charles 10883 R. M. Bangham Charles 86803240, 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/425 n. meekings kiran, leipzig jeremy, p. taylor graham Dryad Digital Repository 2016 Datasets, study [(0, 0.005564661), (1, 0.0055636633), (2, 0.46103227), (3, 0.005563212), (4, 0.0055632675), (5, 0.005562972), (6, 0.0055633644), (7, 0.49445632), (8, 0.005563717), (9, 0.005566529)]
r. t. sang 10955 R. T. SANG https://www.aifb.kit.edu/web/DSKG/dataset/455 kavya h. rao, i. v. litvinyuk Figshare 2018 Visualization [(0, 0.0017877062), (1, 0.6509667), (2, 0.001787692), (3, 0.02389744), (4, 0.0017876548), (5, 0.0017876598), (6, 0.0017879521), (7, 0.19762024), (8, 0.11678924), (9, 0.0017877325)]
r. tacutu 11286 R. Tacutu 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/2110 d. barardo, e. johnson, e. diana, j. p. de magalhaes, g. lehmann, v. e. fraifeld, d. toren, j. wang, t. craig, a. budovsky, d. thornton 2018 AnAge [(0, 0.020003892), (1, 0.4200142), (2, 0.020003803), (3, 0.020003935), (4, 0.020003803), (5, 0.020003803), (6, 0.020003803), (7, 0.020003803), (8, 0.41995516), (9, 0.020003803)]
rafael 10709 Rafael 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/360 2019 dataset [(0, 0.0017248255), (1, 0.984476), (2, 0.0017248626), (3, 0.0017247306), (4, 0.0017248096), (5, 0.0017248897), (6, 0.0017247838), (7, 0.0017248994), (8, 0.0017252761), (9, 0.0017249698)]
rajath chidananda 10981 Rajath Chidananda 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/470 Words, Meets, Popcorn [(0, 0.0014290098), (1, 0.0014292166), (2, 0.001429044), (3, 0.0014294258), (4, 0.0014290551), (5, 0.065114535), (6, 0.0014290615), (7, 0.0014291023), (8, 0.27863917), (9, 0.6462423)]
rakesh raushan 10747 Rakesh Raushan 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/386 Social, Network [(0, 0.0055567874), (1, 0.005556139), (2, 0.005556955), (3, 0.0055559166), (4, 0.0055561615), (5, 0.0055560614), (6, 0.06921794), (7, 0.0055559743), (8, 0.005556001), (9, 0.88633204)]
rambaut andrew 10698 Rambaut Andrew 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/354 thomas jessica a., john w. h., welch john j. Dryad Digital Repository 2013 Dataset2 [(0, 0.050024), (1, 0.05000145), (2, 0.5499396), (3, 0.050001442), (4, 0.05000185), (5, 0.050003354), (6, 0.050002992), (7, 0.05000613), (8, 0.05000627), (9, 0.05001292)]
rankin brian d. 10331 Rankin Brian D. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/197 w. fox jeremy, barron-ortiz christian r., chew amy e., a. holroyd patricia, ludtke joshua a., yang xingkai, m. theodor jessica Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0029424382), (1, 0.0029434902), (2, 0.0029421244), (3, 0.002942372), (4, 0.0029427286), (5, 0.97351766), (6, 0.0029422862), (7, 0.0029421311), (8, 0.0029424964), (9, 0.0029422138)]
rankin brian d. 10872 Rankin Brian D. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/417 w. fox jeremy, barron-ortiz christian r., chew amy e., a. holroyd patricia, ludtke joshua a., yang xingkai, m. theodor jessica Dryad Digital Repository 2015 Electronic, supplementary, material,, Dataset [(0, 0.0027040981), (1, 0.0027046625), (2, 0.002703693), (3, 0.002703763), (4, 0.0027044355), (5, 0.9756645), (6, 0.002703699), (7, 0.0027036292), (8, 0.0027038676), (9, 0.002703686)]
rasmi ranjan patra 11094 Rasmi Ranjan Patra 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/518 Scheduling, Cloud, Computing [(0, 0.0018882296), (1, 0.8834089), (2, 0.023953732), (3, 0.0018885038), (4, 0.0018882717), (5, 0.0018885069), (6, 0.0018882056), (7, 0.001888893), (8, 0.0018885768), (9, 0.07941819)]
rasolofoson ranaivo 10967 Rasolofoson Ranaivo 162324750 https://www.aifb.kit.edu/web/DSKG/dataset/463 Figshare 2018 countries [(0, 0.1228159), (1, 0.615334), (2, 0.04626716), (3, 0.003572972), (4, 0.0035731092), (5, 0.0035729443), (6, 0.0035736472), (7, 0.1941426), (8, 0.003574314), (9, 0.003573397)]
ravetto enri simone 11105 Ravetto Enri Simone 185592680, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/522 probo massimiliano, renna manuela, caro eleonora, lussiana carola, lombardi giampiero, lonati michele Figshare 2018 Dataset.xlsx [(0, 0.0055587357), (1, 0.0055583618), (2, 0.005558879), (3, 0.81081873), (4, 0.0055576377), (5, 0.005557941), (6, 0.0055582672), (7, 0.14471501), (8, 0.0055579045), (9, 0.005558505)]
reichel katja 10037 Reichel Katja 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/23 rouger romuald, stoeckel solenn, malrieu florent, masson jean pierre Dryad Digital Repository 2016 Single, locus, analysis [(0, 0.25204143), (1, 0.0034509066), (2, 0.003451045), (3, 0.4227036), (4, 0.0034498337), (5, 0.0034501413), (6, 0.0034498873), (7, 0.0034507494), (8, 0.30110252), (9, 0.0034498938)]
reichel katja 10357 Reichel Katja 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/204 rouger romuald, stoeckel solenn, malrieu florent, masson jean pierre Dryad Digital Repository 2016 analysis [(0, 0.003573256), (1, 0.12788935), (2, 0.0035737336), (3, 0.56620055), (4, 0.003572772), (5, 0.0035731047), (6, 0.0035729199), (7, 0.003573778), (8, 0.28089762), (9, 0.0035729483)]
renema willem 10938 Renema Willem 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/452 yasuhara moriaki, iwatani hokuto, hunt gene, okahashi hisayo, kase tomoki, hayashi hiroki, irizuki toshiaki, yolanda m., fernando allan gil s. Dryad Digital Repository 2016 Modern, dataset [(0, 0.006672621), (1, 0.0066716587), (2, 0.0066717216), (3, 0.0066711693), (4, 0.93995297), (5, 0.0066711684), (6, 0.0066711684), (7, 0.0066744406), (8, 0.0066717444), (9, 0.0066713416)]
renjifo camila 10182 Renjifo Camila 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/109 bravo carlos, cordovez juan manuel, santos-vega mauricio Figshare 2019 Incidence, dataset [(0, 0.014297998), (1, 0.014298366), (2, 0.44313508), (3, 0.014297512), (4, 0.44248083), (5, 0.0142975105), (6, 0.0142975105), (7, 0.014299637), (8, 0.014298005), (9, 0.014297529)]
renna manuela 11107 Renna Manuela 185592680, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/522 ravetto enri simone, probo massimiliano, caro eleonora, lussiana carola, lombardi giampiero, lonati michele Figshare 2018 Dataset.xlsx [(0, 0.0055587357), (1, 0.0055583618), (2, 0.005558879), (3, 0.81081873), (4, 0.0055576377), (5, 0.005557941), (6, 0.0055582672), (7, 0.14471501), (8, 0.0055579045), (9, 0.005558505)]
riccio gaetano 10825 Riccio Gaetano 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/411 cara fabrizio, cultrera giovanna, amoroso sara, bordoni paola, bucci augusto, d'amico maria, cantore luciana, carannante simona, cogliano rocco, giulio giuseppe di, naccio deborah di, famiani daniela, felicetta chiara, franceschina gianlorenzo, lovati sara, luzi lucia, mascandola claudia, massa marco, mercuri alessia, milana giuliano, pucillo stefania, puglia rodolfo, vassallo maurizio, boniolo graziano, caielli grazia, corsi adelmo, franco roberto de, tento alberto, bongiovanni giovanni, hailemikael salomon, martini guido, paciello antonella, peloso alessandro, poggi fabrizio, vladimiro, gallipoli maria rosaria, stabile tony alfredo, mancini marco figshare 2019 Metadata, record, Temporary, dense, seismic, network, during, Central, Italy, seismic, emergency, microzonation, studies [(0, 0.005001578), (1, 0.0050027687), (2, 0.005001574), (3, 0.005001422), (4, 0.0050018383), (5, 0.005001693), (6, 0.9549845), (7, 0.0050014453), (8, 0.0050016628), (9, 0.0050015533)]
richard 10491 Richard 138885662 https://www.aifb.kit.edu/web/DSKG/dataset/257 slivinski laura c., compo gilbert p., whitaker jeffrey s., brohan phillip, allan rob, yin xungang, vose russell, titchner holly, kennedy john, spencer lawrence j., ashcroft linden, bronnimann stefan, brunet manola, camuffo dario, cram thomas a., castro fernando, freeman j. eric, gergis joelle, hawkins ed, jones philip d., jourdain sylvie, kubota hisayuki, blancq frank le, lee tsz-cheung, lorrey andrew, maugeri maurizio, moore kent, przybylak rajmund, chris, tinz birger, trewin blair, valente maria antonia, wang xiaolan l., wilkinson clive, wood kevin, wyszynski przemyslaw UCAR/NCAR - Research Data Archive 2019 NOAA-CIRES-DOE, Twentieth, Century, Reanalysis, Version [(0, 0.020050883), (1, 0.00035987195), (2, 0.0003598477), (3, 0.00035989098), (4, 0.0003598632), (5, 0.9770699), (6, 0.00035990163), (7, 0.00035998205), (8, 0.00035995702), (9, 0.00035988286)]
richard m. 11173 Richard M. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/572 johnston alice s. a. Dryad Digital Repository 2018 Dataset, References [(0, 0.0035736123), (1, 0.003573654), (2, 0.0035739962), (3, 0.0035733148), (4, 0.0035733047), (5, 0.0035730985), (6, 0.14215611), (7, 0.8292562), (8, 0.003573332), (9, 0.003573398)]
richard van der laan 11215 Richard van der Laan 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/1232 ronald fricke, william eschmeyer California Academy of Sciences Catalog, Fishes [(0, 0.016678974), (1, 0.56994843), (2, 0.01667392), (3, 0.29666325), (4, 0.016671117), (5, 0.016670913), (6, 0.01667914), (7, 0.016671252), (8, 0.016671777), (9, 0.016671201)]
richter michael 10172 Richter Michael 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/106 lombardot thierry, kottmann renzo, pfeffer hauke, teeling hanno, frank oliver Figshare 2011 Genomes, Mapserver [(0, 0.728574), (1, 0.0032283089), (2, 0.0032278574), (3, 0.0032276625), (4, 0.003227962), (5, 0.0032298383), (6, 0.0032279433), (7, 0.0032280644), (8, 0.24560077), (9, 0.0032275543)]
rieser verena 10186 Rieser Verena https://www.aifb.kit.edu/web/DSKG/dataset/113 novikova jekaterina Heriot-Watt University 2017 Challenge, Dataset [(0, 0.0031294082), (1, 0.0031292634), (2, 0.003129353), (3, 0.0031288639), (4, 0.16321348), (5, 0.22108808), (6, 0.003129107), (7, 0.0031291822), (8, 0.46419445), (9, 0.13272882)]
rippe john p. 11021 Rippe John P. 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/488 v. matz mikhail, medina monica, khawaja nida z., h. pinzon c. jorge, d. castillo karl, w. davies sarah Dryad Digital Repository 2017 Microsatellite, genotype [(0, 0.0050014686), (1, 0.0050021126), (2, 0.25499824), (3, 0.0050017047), (4, 0.005001192), (5, 0.005001265), (6, 0.005001028), (7, 0.0050018337), (8, 0.7049896), (9, 0.0050015687)]
ritland kermit 10757 Ritland Kermit 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/388 napolitano constanza, diaz diego, sanderson jim, e. johnson warren Dryad Digital Repository 2015 Mitochondrial, sequences [(0, 0.21765882), (1, 0.0040049045), (2, 0.33959502), (3, 0.0040048095), (4, 0.41471362), (5, 0.0040042032), (6, 0.004004108), (7, 0.004004782), (8, 0.004005344), (9, 0.004004384)]
ritschl lucas 10190 Ritschl Lucas 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/115 fichter andreas, mucke thomas, humbs martin, luppa peter, wolff klaus-dietrich Dryad Digital Repository 2016 Minimal, dataset [(0, 0.0027062823), (1, 0.3120456), (2, 0.0027061522), (3, 0.002705297), (4, 0.0027060604), (5, 0.002705573), (6, 0.66630715), (7, 0.002706259), (8, 0.002705882), (9, 0.0027057636)]
riveros elsa valiente 10674 Riveros Elsa Valiente 192562407, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/339 loiselle steven, davi cunha, shupe scott, rocha luciana Figshare 2016 Data.xlsx [(0, 0.016682342), (1, 0.016683985), (2, 0.84985054), (3, 0.016677687), (4, 0.016691793), (5, 0.016677799), (6, 0.016687857), (7, 0.016688213), (8, 0.016678357), (9, 0.016681392)]
robert c. 10351 Robert C. https://www.aifb.kit.edu/web/DSKG/dataset/202 nghia t., drakopoulos michael Figshare 2018 Visualization [(0, 0.011115753), (1, 0.011116267), (2, 0.011116247), (3, 0.011115246), (4, 0.011115288), (5, 0.80073434), (6, 0.011117472), (7, 0.011117259), (8, 0.11033636), (9, 0.011115719)]
robert c. 10744 Robert C. 41008148, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/384 nghia t., drakopoulos michael Figshare 2018 Visualization [(0, 0.01000219), (1, 0.010003662), (2, 0.010003846), (3, 0.010003299), (4, 0.01000222), (5, 0.9099709), (6, 0.010003116), (7, 0.01000481), (8, 0.010003411), (9, 0.010002528)]
robert c. 10993 Robert C. 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/477 nghia t., drakopoulos michael Figshare 2018 Visualization [(0, 0.01003375), (1, 0.010034938), (2, 0.010034305), (3, 0.010035033), (4, 0.0100337835), (5, 0.7986364), (6, 0.010034821), (7, 0.010035625), (8, 0.12108741), (9, 0.010033935)]
robert r. martin 11245 Robert R. Martin 144024400 https://www.aifb.kit.edu/web/DSKG/dataset/2041 roger finke, sarah montminy, jaime harris 2011 Cross-National, Socio-Economic, Religion, Data, [(0, 0.03333674), (1, 0.03333674), (2, 0.03334013), (3, 0.03333674), (4, 0.03333674), (5, 0.03333674), (6, 0.3666756), (7, 0.3666271), (8, 0.03333674), (9, 0.03333674)]
roberto cipriani 11271 Roberto Cipriani 95457728 https://www.aifb.kit.edu/web/DSKG/dataset/2055 vincenzo cesareo, clemente lanzetti, giancarlo rovati 1994 Religion, Italy [(0, 0.1), (1, 0.1), (2, 0.1), (3, 0.1), (4, 0.1), (5, 0.1), (6, 0.1), (7, 0.1), (8, 0.1), (9, 0.1)]
robertson stuart 10010 Robertson Stuart 185592680, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/7 University of Strathclyde 2015 X-ray, crystallography [(0, 0.6594897), (1, 0.0058911103), (2, 0.00589051), (3, 0.0058898474), (4, 0.0058910674), (5, 0.0058911922), (6, 0.2933843), (7, 0.0058898833), (8, 0.0058914325), (9, 0.0058909687)]
rocha luciana 10673 Rocha Luciana 192562407, 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/339 loiselle steven, davi cunha, shupe scott, riveros elsa valiente Figshare 2016 Data.xlsx [(0, 0.016682342), (1, 0.016683985), (2, 0.84985054), (3, 0.016677687), (4, 0.016691793), (5, 0.016677799), (6, 0.016687857), (7, 0.016688213), (8, 0.016678357), (9, 0.016681392)]
rodney stark 11278 Rodney Stark 15744967 https://www.aifb.kit.edu/web/DSKG/dataset/2056 lu yengfang, carson mencken, byron johnson, eric liu, anna sun, chiu heu-yuan, fenggang yangf, victor yuan 2007 Spiritual, Study, Chinese, Residents [(0, 0.020010915), (1, 0.21982822), (2, 0.02002011), (3, 0.020011319), (4, 0.02001927), (5, 0.02001087), (6, 0.020023542), (7, 0.020014815), (8, 0.6200476), (9, 0.020013252)]
rodo miguel 10896 Rodo Miguel 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/435 rozot virginie, hatherill mark, dintwe one b., nemes elisa Figshare 2019 Megapool [(0, 0.0038491406), (1, 0.0038491774), (2, 0.9653577), (3, 0.0038484617), (4, 0.0038499017), (5, 0.0038489315), (6, 0.003849372), (7, 0.003848817), (8, 0.0038493455), (9, 0.0038491841)]
rodwell m. j. 10555 Rodwell M. J. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., ross t. f., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
roger finke 11243 Roger Finke 144024400 https://www.aifb.kit.edu/web/DSKG/dataset/2041 sarah montminy, robert r. martin, jaime harris 2011 Cross-National, Socio-Economic, Religion, Data, [(0, 0.03333674), (1, 0.03333674), (2, 0.03334013), (3, 0.03333674), (4, 0.03333674), (5, 0.03333674), (6, 0.3666756), (7, 0.3666271), (8, 0.03333674), (9, 0.03333674)]
rolinski susanne 10363 Rolinski Susanne https://www.aifb.kit.edu/web/DSKG/dataset/210 muller christoph GFZ Data Services 2018 global, gridded, tillage [(0, 0.0007581869), (1, 0.0007583907), (2, 0.0007585621), (3, 0.000758187), (4, 0.0007581495), (5, 0.00075824035), (6, 0.0007583015), (7, 0.21701437), (8, 0.000758298), (9, 0.77691936)]
rollinson njal 10804 Rollinson Njal 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/404 Dryad Digital Repository 2015 Database [(0, 0.38656983), (1, 0.0041702893), (2, 0.0041701184), (3, 0.004170227), (4, 0.0041710255), (5, 0.47502124), (6, 0.0041703302), (7, 0.10921721), (8, 0.004170163), (9, 0.004169541)]
ronald fricke 11214 Ronald Fricke 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/1232 richard van der laan, william eschmeyer California Academy of Sciences Catalog, Fishes [(0, 0.016678974), (1, 0.56994843), (2, 0.01667392), (3, 0.29666325), (4, 0.016671117), (5, 0.016670913), (6, 0.01667914), (7, 0.016671252), (8, 0.016671777), (9, 0.016671201)]
roques alain 10657 Roques Alain 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/332 javal marion, courtin claudine, kerdelhue carole, lombaert eric, tsykun tetyana, prospero simone, roux geraldine Figshare 2019 Microsatellites, dataset [(0, 0.010009417), (1, 0.010015825), (2, 0.010018505), (3, 0.010009823), (4, 0.010009417), (5, 0.010009417), (6, 0.010009825), (7, 0.010010399), (8, 0.010009417), (9, 0.9098979)]
rosengrave patrice 11144 Rosengrave Patrice 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/546 montgomerie robert, gemmell neil Dryad Digital Repository 2016 TRIOML [(0, 0.005561343), (1, 0.005561435), (2, 0.43266365), (3, 0.0055620717), (4, 0.0055612205), (5, 0.3596398), (6, 0.16876595), (7, 0.005561997), (8, 0.0055610673), (9, 0.005561497)]
ross t. f. 10556 Ross T. F. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/271 compo g. p., whitaker j. s., allan r. j., yin x., vose r. s., matsui n., ashcroft l., auchmann r., bessemoulin p., brandsma t., brohan p., comeaux j., cram t. a., groisman p. y., hersbach h., jones p. d., jonsson t., jourdain s.,, kelly g., knapp k. r., kruger a., lentini g., lorrey a., lott n., lubker s. j., luterbacher j., marshall g. j., maugeri m., mock c. j., mok h. y., rodwell m. j., srnec l., valente m. a., vizi z., wang x. l., westcott n., woollen j. s., worley s. j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Operations And Services Division 2015 International, Surface, Pressure, Databank, version [(0, 0.0017555925), (1, 0.2967155), (2, 0.0017556554), (3, 0.001755529), (4, 0.0017556442), (5, 0.66513866), (6, 0.0017566363), (7, 0.00175579), (8, 0.0017560854), (9, 0.025854912)]
rossi vincenzo 10734 Rossi Vincenzo 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/379 yang hua, liu xinye, xin mingming, du jinkun, hu zhaorong, peng huiru, sun qixin, ni zhongfu, yao yingyin Dryad Digital Repository 2016 Supplemental, Dataset [(0, 0.87141), (1, 0.0142872), (2, 0.014290962), (3, 0.014288103), (4, 0.014287115), (5, 0.014287165), (6, 0.014287392), (7, 0.014287283), (8, 0.014287304), (9, 0.014287489)]
rosso massimiliano 10772 Rosso Massimiliano https://www.aifb.kit.edu/web/DSKG/dataset/392 correia ana m., gandra miguel, liberal marcos, valente raul, agatha gil, pierce graham j. figshare 2019 Metadata, record, dataset, cetacean, occurrences, Eastern, North, Atlantic [(0, 0.26775646), (1, 0.011120489), (2, 0.011119371), (3, 0.011119299), (4, 0.011123657), (5, 0.011119022), (6, 0.011122717), (7, 0.011119022), (8, 0.64327866), (9, 0.011121326)]
rotella jay 10997 Rotella Jay 41008148 https://www.aifb.kit.edu/web/DSKG/dataset/479 flesch elizabeth, thomson jennifer, graves tabitha, garrott robert Figshare 2018 Simulation, dataset [(0, 0.9307326), (1, 0.007697601), (2, 0.007695642), (3, 0.007695541), (4, 0.007696259), (5, 0.0076958183), (6, 0.0076964074), (7, 0.0076963184), (8, 0.0076982155), (9, 0.0076955752)]
rouger romuald 10036 Rouger Romuald 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/23 reichel katja, stoeckel solenn, malrieu florent, masson jean pierre Dryad Digital Repository 2016 Single, locus, analysis [(0, 0.25204143), (1, 0.0034509066), (2, 0.003451045), (3, 0.4227036), (4, 0.0034498337), (5, 0.0034501413), (6, 0.0034498873), (7, 0.0034507494), (8, 0.30110252), (9, 0.0034498938)]
rouger romuald 10356 Rouger Romuald 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/204 reichel katja, stoeckel solenn, malrieu florent, masson jean pierre Dryad Digital Repository 2016 analysis [(0, 0.003573256), (1, 0.12788935), (2, 0.0035737336), (3, 0.56620055), (4, 0.003572772), (5, 0.0035731047), (6, 0.0035729199), (7, 0.003573778), (8, 0.28089762), (9, 0.0035729483)]
roux geraldine 10658 Roux Géraldine 86803240, 71924100 https://www.aifb.kit.edu/web/DSKG/dataset/332 javal marion, courtin claudine, kerdelhue carole, lombaert eric, tsykun tetyana, prospero simone, roques alain Figshare 2019 Microsatellites, dataset [(0, 0.010009417), (1, 0.010015825), (2, 0.010018505), (3, 0.010009823), (4, 0.010009417), (5, 0.010009417), (6, 0.010009825), (7, 0.010010399), (8, 0.010009417), (9, 0.9098979)]
rouxel thierry 10057 Rouxel Thierry 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/31 couloux arnaud, wincker patrick, jean marc, noel benjamin, cruaud corinne, da silva corinne, lemainque arnaud, dutreux fabien', lapalu nicolas, linglin juliette, balesdent marie-helene Figshare 2018 Genomic, datasets [(0, 0.8874455), (1, 0.012505132), (2, 0.012504966), (3, 0.012509499), (4, 0.012504909), (5, 0.012505869), (6, 0.012506899), (7, 0.012505305), (8, 0.0125064375), (9, 0.012505492)]
rowe clinton m. 11171 Rowe Clinton M. 205649164 https://www.aifb.kit.edu/web/DSKG/dataset/570 willmott cort j. UCAR/NCAR - Research Data Archive University Corporation For Atmospheric Research, Center For Atmospheric Research, CISL):Information Services Division, ISD):Data Engineering And Curation Section 1990 Terrestrial, Water, Budget, Archive [(0, 0.0022731225), (1, 0.0022733111), (2, 0.0022731342), (3, 0.0022731747), (4, 0.0022732955), (5, 0.20520543), (6, 0.002273481), (7, 0.7766086), (8, 0.0022731656), (9, 0.0022732518)]
roy gabriel 10348 Roy Gabriel https://www.aifb.kit.edu/web/DSKG/dataset/201 lamaze fabien c., scott a., normandeau eric, garant dany Dryad Digital Repository 2014 [(0, 0.35711527), (1, 0.0035764824), (2, 0.29206797), (3, 0.32578537), (4, 0.0035753278), (5, 0.003576157), (6, 0.0035757662), (7, 0.0035761038), (8, 0.0035762836), (9, 0.0035752861)]
royer michael 10722 Royer Michael 127413603 https://www.aifb.kit.edu/web/DSKG/dataset/366 Figshare 2019 Color, Rendition, Characteristics [(0, 0.00556405), (1, 0.00556136), (2, 0.13215068), (3, 0.005563384), (4, 0.0055608014), (5, 0.005560854), (6, 0.0055617807), (7, 0.0055620186), (8, 0.82335305), (9, 0.005561998)]
rozot virginie 10897 Rozot Virginie 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/435 rodo miguel, hatherill mark, dintwe one b., nemes elisa Figshare 2019 Megapool [(0, 0.0038491406), (1, 0.0038491774), (2, 0.9653577), (3, 0.0038484617), (4, 0.0038499017), (5, 0.0038489315), (6, 0.003849372), (7, 0.003848817), (8, 0.0038493455), (9, 0.0038491841)]
ruhnau oliver 11033 Ruhnau Oliver https://www.aifb.kit.edu/web/DSKG/dataset/497 praktiknjo aaron figshare 2019 Metadata, record, series, demand, efficiency, energy, system, modeling [(0, 0.005557913), (1, 0.005557244), (2, 0.42391858), (3, 0.005557263), (4, 0.005557203), (5, 0.0055575003), (6, 0.53161997), (7, 0.005558123), (8, 0.0055585355), (9, 0.0055576977)]
ruoque shen 10229 Ruoque Shen 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/143 zheng yi, yawen wang, xiangqian li, shuguang liu, shunlin liang, chen jing m., weimin ju, zhang li Figshare 2019 Improved, estimate, global, gross, primary, production, reproducing, long-term, variation,, 1982-2017 [(0, 0.0013358403), (1, 0.0013361537), (2, 0.0013358513), (3, 0.0013357027), (4, 0.0013356808), (5, 0.18218006), (6, 0.0013358536), (7, 0.60610604), (8, 0.16660947), (9, 0.03708934)]
russell lynn m. 10320 Russell Lynn M. 185592680 https://www.aifb.kit.edu/web/DSKG/dataset/193 mulmenstadt johannes, sourdeval odran, henderson david s., l'ecuyer tristan s. World Data Center for Climate 2018 Using, CALIOP, estimate, cloud-field, height, uncertainty:, Cloud, Altitude, Spatial, Extrapolator, (CBASE), algorithm, dataset [(0, 0.0011245287), (1, 0.0011244992), (2, 0.0011243506), (3, 0.0011243452), (4, 0.0011243349), (5, 0.8128101), (6, 0.0011243607), (7, 0.17819458), (8, 0.0011245662), (9, 0.0011243491)]
s. manos paul 11169 S. Manos Paul 86803240 https://www.aifb.kit.edu/web/DSKG/dataset/569 l. hipp andrew, mcvay john d. Dryad Digital Repository 2017 partition [(0, 0.011138602), (1, 0.011126235), (2, 0.011131733), (3, 0.011123711), (4, 0.011123377), (5, 0.011123332), (6, 0.011128142), (7, 0.89984226), (8, 0.011126928), (9, 0.01113562)]