-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvis.dot
More file actions
1086 lines (1081 loc) · 151 KB
/
Copy pathvis.dot
File metadata and controls
1086 lines (1081 loc) · 151 KB
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
digraph {
rankdir = LR;
charset="utf-8";
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/1" -> "Lhttp://madata/rdf/HängerC" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/1" -> "Lhttp://madata/rdf/KrätzschC" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/1" -> "Lhttp://madata/rdf/NiemannC" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/1" -> "LAnalyse der Tag-Struktur in Bibsonomy" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/1" -> "Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/1" -> "Rhttps://ub-madoc.bib.uni-mannheim.de/2103" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/116" -> "Lhttp://madata/rdf/AdolphD" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/116" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/116" -> "LData from the paper: Valence and Arosual: A comparison of two sets of Emotional Facial Expressions" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/116" -> "Rhttps://ub-madoc.bib.uni-mannheim.de/30291" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/116" -> "Lhttp://madata/rdf/GassO" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/116" -> "LExploratory Interview Study with Financial Agents" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/2" -> "Lhttp://madata/rdf/KaiserJ" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/2" -> "Lhttp://madata/rdf/KleinA" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/2" -> "LE-Book-Umfrage an der UB Mannheim 2010 - Fragebogen und Ergebnisdatensatz" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/2" -> "Rhttps://ub-madoc.bib.uni-mannheim.de/33134" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/74" -> "Lhttp://madata/rdf/MethH" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/74" -> "Lhttp://madata/rdf/KahrauF" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/74" -> "LCross-Functional Integration of Product Management and Product Design in Application Software Development: Exploration of Success Factors - Interview Transcripts\n " [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/74" -> "Rhttps://ub-madoc.bib.uni-mannheim.de/29687" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/75" -> "Lhttp://madata/rdf/BotzenhardtA" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/75" -> "LCross-Functional Integration of Product Management and Product Design in Application Software Development: Exploration of Success Factors - Survey Data" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/75" -> "Rhttps://ub-madoc.bib.uni-mannheim.de/29687" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/65" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/65" -> "Lhttp://madata/rdf/MeilickeC" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/65" -> "Lhttp://madata/rdf/NiepertM" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/65" -> "Lhttp://madata/rdf/PonzettoS" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/65" -> "LIntegrating Open and Closed Information Extraction: Challenges and First Steps" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/65" -> "Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/65" -> "Rhttps://ub-madoc.bib.uni-mannheim.de/35518" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/65" -> "Rhttps://ub-madoc.bib.uni-mannheim.de/36461" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/65" -> "Rhttps://ub-madoc.bib.uni-mannheim.de/36671" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/65" -> "Rfile:///home/kb/build/madata-evaluation/output.xml" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/86" -> "Lhttp://madata/rdf/GassO" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/86" -> "LBusiness Data Manager Experimental Evaluation" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/28" -> "Lhttp://madata/rdf/SchummI" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/28" -> "LE-Book-Umfrage an der UB Mannheim 2010 - Fragebogen und Ergebnisdatensatz" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/28" -> "Rhttps://ub-madoc.bib.uni-mannheim.de/33134" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/23" -> "Lhttp://madata/rdf/RitzeD" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/23" -> "Lhttp://madata/rdf/PaulheimH" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/23" -> "Lhttp://madata/rdf/EckertK" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/23" -> "LEvaluation measures for ontology matchers in supervised matching scenarios" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/23" -> "Rhttp://dx.doi.org/10.1007/978-3-642-41338-4_25" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/72" -> "Lhttp://madata/rdf/HadaschF" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/72" -> "LField Experiment Data" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/72" -> "Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/73/" -> "Lhttp://madata/rdf/HadaschF" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/73/" -> "LLab Experiment Data" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/73/" -> "Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/73/" -> "Lhttp://madata/rdf/HadaschF" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/73/" -> "LSurvey-Based Experiment Data" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/73/" -> "Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/111" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/111" -> "Lhttp://madata/rdf/SchulzA" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/111" -> "Lhttp://madata/rdf/CraskeM" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/111" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/111" -> "LData from the paper: Acquisition of behavioral avoidance: Task-irrelevant conditioned stimuli trigger costly decisions" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/111" -> "Rhttp://dx.doi.org/10.1037/a0036136" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/112" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/112" -> "Lhttp://madata/rdf/PawlikowskiM" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/112" -> "Lhttp://madata/rdf/CraskeM" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/112" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/112" -> "LData from the paper: Avoidant decision making in social anxiety: the interaction of angry faces and emotional responses" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/112" -> "Rhttp://dx.doi.org/10.3389/fpsyg.2014.01050" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/95" -> "Lhttp://madata/rdf/SchachtS" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/95" -> "LEx Post Evaluation of Project KMS" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/93" -> "Lhttp://madata/rdf/SchachtS" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/93" -> "LExploratory Interview Study for Project Knowledge Reuse" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/94" -> "Lhttp://madata/rdf/SchachtS" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/94" -> "LPre-Evaluation Results of Project KMS Artifact" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/90" -> "Lhttp://madata/rdf/TrenzM" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/90" -> "LMultichannel commerce: A consumer perspective on the integration of physical and electronic channels " [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/87" -> "Lhttp://madata/rdf/WeilandL" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/87" -> "Lhttp://madata/rdf/EffelsbergW" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/87" -> "Lhttp://madata/rdf/PonzettoS" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/87" -> "LData from the paper: Weakly supervised construction of a repository of iconic images" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/87" -> "Rhttp://www.aclweb.org/anthology/W14-5410" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/80" -> "Lhttp://madata/rdf/BrhelM" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/80" -> "LExploring Principles of User-Centered Agile Software Development: A Literature Review" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/80" -> "Rhttp://dx.doi.org/10.1016/j.infsof.2015.01.004" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/67" -> "Lhttp://madata/rdf/MeilickeC" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/67" -> "LDetecting Meaningful Compounds in Complex Class Labels (Experimental Results)" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/60" -> "Lhttp://madata/rdf/LiY" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/60" -> "LEffects of Cultural Intelligence in Cross-Cultural Virtual Collaboration - Experimental data" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/60" -> "Rhttp://dx.doi.org/10.1007/978-3-642-39137-8_27" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/60" -> "Rhttp://dl.acm.org/citation.cfm?id=2160895" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/62" -> "Lhttp://madata/rdf/LiY" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/62" -> "LEffects of process ambidexterity on coordination and outcomes in software project teams - surevy data" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/61" -> "Lhttp://madata/rdf/LiY" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/61" -> "LFormulating Effective Coordination Strategies in Agile Global Software Development Teams - Interview transcripts" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/61" -> "Rhttp://aisel.aisnet.org/icis2012/proceedings/ResearchInProgress/36/" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/57" -> "Lhttp://madata/rdf/StuckenschmidtH" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/57" -> "Lhttp://madata/rdf/PonzettoS" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/57" -> "Lhttp://madata/rdf/MeilickeC" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/57" -> "LA Gold Standard of Meaningful Compounds in Complex Class Labels" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/113" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/113" -> "Lhttp://madata/rdf/BrandM" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/113" -> "Lhttp://madata/rdf/PawlikowskiM" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/113" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/113" -> "LData from the paper: The cost of fear: Avoidant decision making in a spider gambling task" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/113" -> "Rhttp://dx.doi.org/10.1016/j.janxdis.2014.03.001" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/76" -> "Lhttp://madata/rdf/BotzenhardtA" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/76" -> "LForm and function - designing successful mobile data services - Survey Data " [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/149" -> "Lhttp://madata/rdf/MoranaS" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/149" -> "LExperiment Data Set - Design Cycle Two" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/148" -> "Lhttp://madata/rdf/MoranaS" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/148" -> "LInterviews and Workshops - Design Cycle One" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/148" -> "Rhttps://ub-madoc.bib.uni-mannheim.de/37039" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/151" -> "Lhttp://madata/rdf/MoranaS" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/151" -> "LInterviews and Workshop - Design Cycle Three" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/150" -> "Lhttp://madata/rdf/MoranaS" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/150" -> "LSurvey Data Set - Design Cycle Three" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/152" -> "Lhttp://madata/rdf/MoranaS" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/152" -> "LTicketing Processes - Design Cycle Three" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/145" -> "Lhttp://madata/rdf/GraupnerE" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/145" -> "LSupplements to the paper: Understanding Digitization across Processes and their Phases – An Extension of Process Virtualization Theory" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/145" -> "Lhttp://madata/rdf/GraupnerE" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/145" -> "Lthe paper: Process Digitization in Retail Banking – An Empirical Examination of Process Virtualization Theory" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/136" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/136" -> "LReverb Instance and Relation gold standard" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/134" -> "Lhttp://madata/rdf/GraupnerE" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/134" -> "LSupplements to the paper: Customers' Intention to Use Digital Services in Retail Banking – An Information Processing Perspective" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/134" -> "Rhttp://aisel.aisnet.org/ecis2015_cr/61/" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/127" -> "Lhttp://madata/rdf/BernerM" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/127" -> "LSystematic Literature Review “Enterprise Systems Chartering” –Review Procedure and Analysis Results" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/121" -> "Lhttp://madata/rdf/LauterbachJ" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/121" -> "LUnderstanding the Impact of Social and Ambidextrous Knowing-in-practice on the Effective Use of Enterprise Systems" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/68" -> "Lhttp://madata/rdf/HadaschF" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/68" -> "LInterview Data for the following study: Hadasch, F., Mueller, B., and Maedche, A. (2012). Exploring antecedent environmental and organizational factors to user-caused information leaks: A qualitative study. Proceedings of the 20th European Conference on Information Systems." [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/68" -> "Rhttp://aisel.aisnet.org/cgi/viewquote.cgi?article=1126&context=ecis2012" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/68" -> "Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/129" -> "Lhttp://madata/rdf/GraupnerE" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/129" -> "LSupplements to the paper: Visibility of Business Processes - An Information Processing Perspective in the Financial Services Industry" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/129" -> "Rhttp://aisel.aisnet.org/ecis2015_cr/60/" [ label="cito:citedBy" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/118" -> "Lhttp://madata/rdf/KahrauF" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/118" -> "LInterpretive case study on ES Transformation - Interview Data" [ label="dc:title" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/142" -> "Lhttp://madata/rdf/BurgerA" [ label="dc:creator" ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/142" -> "LAffect and the weight of idealistic and pragmatic concerns in decision situations" [ label="dc:title" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Lhttp://madata/rdf/NiemannC" [ label="dc:creator" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Lhttp://madata/rdf/HängerC" [ label="dc:creator" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Lhttp://madata/rdf/EckertK" [ label="dc:creator" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "LTagging and Automation - Challenges and Chances for Academic Libraries" [ label="dc:title" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Rhttp://www.tandfonline.com/doi/abs/10.1080/19386389.2013.778730#.VjdzlJeVtUQ" [ label="cito:citedBy" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Rhttp://www.cqvip.com/qk/95888x/201202/40920550.html" [ label="cito:citedBy" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Rhttp://www.cqvip.com/qk/93480x/201305/47338454.html" [ label="cito:citedBy" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Rhttp://link.springer.com/chapter/10.1007/978-3-642-24826-9_21" [ label="cito:citedBy" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Rhttp://www.cqvip.com/qk/90226x/201209/43330105.html" [ label="cito:citedBy" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Rhttp://trace.tennessee.edu/utk_gradthes/988/" [ label="cito:citedBy" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Rfile:///home/kb/build/madata-evaluation/ijidt.com/index.php/ijidt/article/download/4.2.9/200" [ label="cito:citedBy" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Rhttp://www.cais-acsi.ca/ojs/index.php/cais/article/view/616" [ label="cito:citedBy" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" -> "Rhttp://195.251.240.254:8080/handle/10184/4103" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/2103" -> "Lhttp://madata/rdf/HängerC" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/2103" -> "LGood tags or bad tags? Tagging im Kontext der bibliothekarischen Sacherschließung" [ label="dc:title" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/2103" -> "Rhttp://www.emeraldinsight.com/doi/full/10.1108/00220410810912451" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/2103" -> "Rhttp://polaris.bc.unicamp.br/seer/ojs/index.php/rbci/article/view/433" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/2103" -> "Rhttp://eprints.rclis.org/16583/" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/2103" -> "Rhttp://eprints.rclis.org/16583/" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/2103" -> "Rhttp://journals.ub.uni-heidelberg.de/index.php/akmb-news/article/viewFile/6147/1649" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/2103" -> "Rfile:///home/kb/build/madata-evaluation/theses.fh-hagenberg.at/system/files/pdf/Kroiss10.pdf" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Lhttp://madata/rdf/AdolphD" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "LValence and Arousal: A Comparison of Two Sets of Emotional Facial Expressions" [ label="dc:title" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://psycnet.apa.org/journals/emo/11/4/860/" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://www.sciencedirect.com/science/article/pii/S0301051112001093" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://www.cpcjournal.org/doi/abs/10.1597/08-244" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://www.sciencedirect.com/science/article/pii/S0167876012006782" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC3685720/" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://www.sciencedirect.com/science/article/pii/S0191886910006227" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://www.tandfonline.com/doi/abs/10.1080/08964289.2013.818932" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://www.tandfonline.com/doi/abs/10.1080/02699931.2015.1049124" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://www.jstor.org/stable/10.5406/amerjpsyc.125.4.0409#pdf_only_tab_quotes" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttps://www.duo.uio.no/handle/10852/35161" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://academicworks.cuny.edu/cgi/viewquote.cgi?article=1387&context=gc_etds" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" -> "Rhttp://www.theses.fr/2013PA05H121" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/33134" -> "Lhttp://madata/rdf/KaiserJ" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/33134" -> "Lhttp://madata/rdf/KleinA" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/33134" -> "LDie E-Book-Umfrage an der UB Mannheim – Zusammenfassung der Ergebnisse" [ label="dc:title" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Lhttp://madata/rdf/BotzenhardtA" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Lhttp://madata/rdf/MethH" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "LCross-Functional Integration of Product Management and Product Design in Application Software Development: Exploration of Success Factors" [ label="dc:title" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://dl.acm.org/citation.cfm?id=2399037" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.258.6574&rep=rep1&type=pdf" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://link.springer.com/chapter/10.1007/978-3-642-36285-9_47" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://www.researchgate.net/profile/Karl_Werder/publication/272360138_Exploring_Principles_of_User-Centered_Agile_Software_Development_A_Literature_Review/links/55003b0f0cf260c99e8f892d.pdf" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://www.pacis-net.org/file/2012/PACIS2012-155.pdf" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://dspace.cc.tut.fi/dpub/handle/123456789/21376" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Lhttp://madata/rdf/BotzenhardtA" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Lhttp://madata/rdf/MethH" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "LCross-Functional Integration of Product Management and Product Design in Application Software Development: Exploration of Success Factors" [ label="dc:title" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://dl.acm.org/citation.cfm?id=2399037" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.258.6574&rep=rep1&type=pdf" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://link.springer.com/chapter/10.1007/978-3-642-36285-9_47" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://www.researchgate.net/profile/Karl_Werder/publication/272360138_Exploring_Principles_of_User-Centered_Agile_Software_Development_A_Literature_Review/links/55003b0f0cf260c99e8f892d.pdf" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://www.pacis-net.org/file/2012/PACIS2012-155.pdf" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" -> "Rhttp://dspace.cc.tut.fi/dpub/handle/123456789/21376" [ label="cito:citedBy" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Lhttp://madata/rdf/MeilickeC" [ label="dc:creator" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Lhttp://madata/rdf/NiepertM" [ label="dc:creator" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Lhttp://madata/rdf/PonzettoS" [ label="dc:creator" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "LIntegrating Open and Closed Information Extraction: Challenges and First Steps" [ label="dc:title" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Rhttp://link.springer.com/chapter/10.1007/978-3-319-07443-6_20#page-1" [ label="cito:citedBy" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.403.846&rep=rep1&type=pdf" [ label="cito:citedBy" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Rhttps://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FcdkuD&sig=dSvmblWprVAr7Bii7Wfyrh0qRYM#v=onepage&q&f=false" [ label="cito:citedBy" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Rhttp://www.qucosa.de/recherche/frontdoor/cache.off?tx_slubopus4frontend[id]=urn%3Anbn%3Ade%3Absz%3A15-qucosa-157932" [ label="cito:citedBy" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Rhttp://link.springer.com/chapter/10.1007/978-3-319-07983-7_11#page-1" [ label="cito:citedBy" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Rhttp://www.aaai.org/ocs/index.php/WS/AAAIW14/paper/view/8722" [ label="cito:citedBy" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Rhttp://dl.acm.org/citation.cfm?id=2556202" [ label="cito:citedBy" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Rhttp://dl.acm.org/citation.cfm?id=2741139" [ label="cito:citedBy" ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" -> "Rhttp://www.akbc.ws/2014/submissions/akbc2014_submission_28.pdf" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/35518" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/35518" -> "LIntegration of Large Scale Knowledge Bases using Probabilistic Graphical Models" [ label="dc:title" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "Lhttp://madata/rdf/MeilickeC" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "Lhttp://madata/rdf/PonzettoS" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "LA Probabilistic Approach for Integrating Heterogeneous Knowledge Sources" [ label="dc:title" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "Rhttp://www.igi-global.com/article/improving-the-quality-of-linked-data-using-statistical-distributions/116452" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "Rhttp://ceur-ws.org/Vol-1162/WoDOOM14-proceedings.pdf#page=33" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "Rhttps://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FdcoyF&sig=6V93jKGmnVtAIMz_-ppAdGARS70#v=onepage&q&f=false" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "Rhttps://tacl2013.cs.columbia.edu/ojs/index.php/tacl/article/view/660" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "Rhttp://www.semantic-web-journal.net/system/files/swj1083.pdf" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" -> "Rhttp://dl.acm.org/citation.cfm?id=2741139" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36671" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36671" -> "Lhttp://madata/rdf/SchuhmacherM" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36671" -> "LEntity Linking for Open Information Extraction" [ label="dc:title" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36671" -> "Rfile:///home/kb/build/madata-evaluation/www.mtg.upf.es/system/files/publications/CIM14_MAIN.pdf" [ label="cito:citedBy" ];
"Rfile:///home/kb/build/madata-evaluation/output.xml" -> "L" [ label="dc:title" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/33134" -> "Lhttp://madata/rdf/KaiserJ" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/33134" -> "Lhttp://madata/rdf/KleinA" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/33134" -> "Lhttp://madata/rdf/KnudsenP" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/33134" -> "Lhttp://madata/rdf/LeichertG" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/33134" -> "Lhttp://madata/rdf/SchummI" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/33134" -> "LDie E-Book-Umfrage an der UB Mannheim – Zusammenfassung der Ergebnisse" [ label="dc:title" ];
"Rhttp://dx.doi.org/10.1007/978-3-642-41338-4_25" -> "Lhttp://madata/rdf/RitzeD" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1007/978-3-642-41338-4_25" -> "Lhttp://madata/rdf/PaulheimH" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1007/978-3-642-41338-4_25" -> "Lhttp://madata/rdf/EckertK" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1007/978-3-642-41338-4_25" -> "LEvaluation measures for ontology matchers in supervised matching scenarios" [ label="dc:title" ];
"Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" -> "Lhttp://madata/rdf/HadaschF" [ label="dc:creator" ];
"Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" -> "LInfluencing Information Technology Users’ Rule Compliance : Multiple Studies in the Security and Business Process Context" [ label="dc:title" ];
"Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" -> "Lhttp://madata/rdf/HadaschF" [ label="dc:creator" ];
"Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" -> "LInfluencing Information Technology Users’ Rule Compliance : Multiple Studies in the Security and Business Process Context" [ label="dc:title" ];
"Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" -> "Lhttp://madata/rdf/HadaschF" [ label="dc:creator" ];
"Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" -> "LInfluencing Information Technology Users’ Rule Compliance : Multiple Studies in the Security and Business Process Context" [ label="dc:title" ];
"Rhttp://dx.doi.org/10.1037/a0036136" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1037/a0036136" -> "Lhttp://madata/rdf/SchulzA" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1037/a0036136" -> "Lhttp://madata/rdf/CraskeM" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1037/a0036136" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1037/a0036136" -> "LAcquisition of behavioral avoidance: task-irrelevant conditioned stimuli trigger costly decisions" [ label="dc:title" ];
"Rhttp://dx.doi.org/10.1037/a0036136" -> "Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4100576/" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1037/a0036136" -> "Rhttp://www.sciencedirect.com/science/article/pii/S0887618514000292" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1037/a0036136" -> "Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4220662/" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1037/a0036136" -> "Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2546159" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1037/a0036136" -> "Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1037/a0036136" -> "Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.3389/fpsyg.2014.01050" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.3389/fpsyg.2014.01050" -> "Lhttp://madata/rdf/PawlikowskiM" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.3389/fpsyg.2014.01050" -> "Lhttp://madata/rdf/CraskeM" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.3389/fpsyg.2014.01050" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.3389/fpsyg.2014.01050" -> "LAvoidant decision making in social anxiety: The interaction of angry faces and emotional responses" [ label="dc:title" ];
"Rhttp://dx.doi.org/10.3389/fpsyg.2014.01050" -> "Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" [ label="cito:citedBy" ];
"Rhttp://www.aclweb.org/anthology/W14-5410" -> "Lhttp://madata/rdf/WeilandL" [ label="dc:creator" ];
"Rhttp://www.aclweb.org/anthology/W14-5410" -> "Lhttp://madata/rdf/EffelsbergW" [ label="dc:creator" ];
"Rhttp://www.aclweb.org/anthology/W14-5410" -> "Lhttp://madata/rdf/PonzettoS" [ label="dc:creator" ];
"Rhttp://www.aclweb.org/anthology/W14-5410" -> "LWeakly supervised construction of a repository of iconic images" [ label="dc:title" ];
"Rhttp://dx.doi.org/10.1016/j.infsof.2015.01.004" -> "Lhttp://madata/rdf/BrhelM" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1016/j.infsof.2015.01.004" -> "Lhttp://madata/rdf/MethH" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1016/j.infsof.2015.01.004" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1016/j.infsof.2015.01.004" -> "Lhttp://madata/rdf/WerderK" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1016/j.infsof.2015.01.004" -> "LExploring principles of user-centered agile software development: A literature review" [ label="dc:title" ];
"Rhttp://dx.doi.org/10.1016/j.infsof.2015.01.004" -> "Rfile:///home/kb/build/madata-evaluation/ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=7302488" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1016/j.infsof.2015.01.004" -> "Rhttp://link.springer.com/chapter/10.1007/978-3-319-22698-9_3" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1016/j.infsof.2015.01.004" -> "Rhttps://books.google.de/books?hl=de&lr=&id=lEquCgAAQBAJ&oi=fnd&pg=PA233&ots=8UJy5d6tdR&sig=gdvKgVW7-OB_fBialpAfcXmdpxE#v=onepage&q&f=false" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1016/j.infsof.2015.01.004" -> "Rhttp://www.researchandinnovationbook.com/PROCEEDINGS/CITA2015/Archives/papers/paper28.pdf" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1007/978-3-642-39137-8_27" -> "Lhttp://madata/rdf/LiY" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1007/978-3-642-39137-8_27" -> "Lhttp://madata/rdf/SkulasonA" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1007/978-3-642-39137-8_27" -> "LUncovering the Effects of Cultural Intelligence on Cross-Cultural Virtual Collaboration Processes" [ label="dc:title" ];
"Rhttp://dl.acm.org/citation.cfm?id=2160895" -> "Lhttp://madata/rdf/LiY" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2160895" -> "Lhttp://madata/rdf/LiH" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2160895" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2160895" -> "Lhttp://madata/rdf/RauP" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2160895" -> "L\"Are You a Trustworthy Partner in a Cross-cultural Virtual Environment?\" – Behavioral Cultural Intelligence and Receptivity-based Trust in Virtual Collaboration" [ label="dc:title" ];
"Rhttp://dl.acm.org/citation.cfm?id=2160895" -> "Rhttp://link.springer.com/chapter/10.1007/978-3-642-39137-8_21" [ label="cito:citedBy" ];
"Rhttp://dl.acm.org/citation.cfm?id=2160895" -> "Rhttp://dl.acm.org/citation.cfm?id=2775462" [ label="cito:citedBy" ];
"Rhttp://dl.acm.org/citation.cfm?id=2160895" -> "Rfile:///home/kb/build/madata-evaluation/link.springer.com/chapter/10.1007/978-3-642-39137-8_27" [ label="cito:citedBy" ];
"Rhttp://aisel.aisnet.org/icis2012/proceedings/ResearchInProgress/36/" -> "Lhttp://madata/rdf/LiY" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/icis2012/proceedings/ResearchInProgress/36/" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/icis2012/proceedings/ResearchInProgress/36/" -> "LFormulating Effective Coordination Strategies in Agile Global Software Development Teams" [ label="dc:title" ];
"Rhttp://aisel.aisnet.org/icis2012/proceedings/ResearchInProgress/36/" -> "Rhttp://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6759189&tag=1" [ label="cito:citedBy" ];
"Rhttp://aisel.aisnet.org/icis2012/proceedings/ResearchInProgress/36/" -> "Rhttp://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=6759181" [ label="cito:citedBy" ];
"Rhttp://aisel.aisnet.org/icis2012/proceedings/ResearchInProgress/36/" -> "Rhttp://aisel.aisnet.org/icis2014/proceedings/ProjectManagement/17/" [ label="cito:citedBy" ];
"Rhttp://aisel.aisnet.org/icis2012/proceedings/ResearchInProgress/36/" -> "Rhttp://www.diva-portal.org/smash/record.jsf?pid=diva2%3A830730&dswid=4164" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1016/j.janxdis.2014.03.001" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1016/j.janxdis.2014.03.001" -> "Lhttp://madata/rdf/BrandM" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1016/j.janxdis.2014.03.001" -> "Lhttp://madata/rdf/PawlikowskiM" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1016/j.janxdis.2014.03.001" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1016/j.janxdis.2014.03.001" -> "LThe cost of fear: Avoidant decision making in a spider gambling task" [ label="dc:title" ];
"Rhttp://dx.doi.org/10.1016/j.janxdis.2014.03.001" -> "Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4248815/" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1016/j.janxdis.2014.03.001" -> "Rfile:///home/kb/build/madata-evaluation/ref09" [ label="cito:citedBy" ];
"Rhttp://dx.doi.org/10.1016/j.janxdis.2014.03.001" -> "Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/37039" -> "Lhttp://madata/rdf/MoranaS" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/37039" -> "Lhttp://madata/rdf/SchachtS" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/37039" -> "Lhttp://madata/rdf/ScherpA" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/37039" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/37039" -> "LDesigning a Process Guidance System to Support User’s Business Process Compliance" [ label="dc:title" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/37039" -> "Rhttp://link.springer.com/chapter/10.1007/978-3-319-18714-3_32" [ label="cito:citedBy" ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/37039" -> "Rhttps://cora.ucc.ie/handle/10468/1814" [ label="cito:citedBy" ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/61/" -> "Lhttp://madata/rdf/GraupnerE" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/61/" -> "Lhttp://madata/rdf/MelcherF" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/61/" -> "Lhttp://madata/rdf/DemersD" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/61/" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/61/" -> "LSupplements to the paper: Customers' Intention to Use Digital Services in Retail Banking – An Information Processing Perspective" [ label="dc:title" ];
"Rhttp://aisel.aisnet.org/cgi/viewquote.cgi?article=1126&context=ecis2012" -> "Lhttp://madata/rdf/HadaschF" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/cgi/viewquote.cgi?article=1126&context=ecis2012" -> "Lhttp://madata/rdf/MuellerB" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/cgi/viewquote.cgi?article=1126&context=ecis2012" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/cgi/viewquote.cgi?article=1126&context=ecis2012" -> "LExploring Antecedent Environmental and Organizational Factors to User-Caused Information Leaks: a Qualitative Study" [ label="dc:title" ];
"Rhttp://aisel.aisnet.org/cgi/viewquote.cgi?article=1126&context=ecis2012" -> "Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" [ label="cito:citedBy" ];
"Rhttp://aisel.aisnet.org/cgi/viewquote.cgi?article=1126&context=ecis2012" -> "Rhttp://dx.doi.org/10.1108/MRR-04-2013-0085" [ label="cito:citedBy" ];
"Rhttp://aisel.aisnet.org/cgi/viewquote.cgi?article=1126&context=ecis2012" -> "Rhttp://link.springer.com/article/10.1007/s10916-013-9984-x" [ label="cito:citedBy" ];
"Rhttp://aisel.aisnet.org/cgi/viewquote.cgi?article=1126&context=ecis2012" -> "Rhttps://domino.fov.uni-mb.si/proceedings.nsf/Proceedings/08209464067DDF2AC1257E5B0048279B/$File/1_Alic.pdf" [ label="cito:citedBy" ];
"Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" -> "Lhttp://madata/rdf/HadaschF" [ label="dc:creator" ];
"Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" -> "LInfluencing Information Technology Users’ Rule Compliance : Multiple Studies in the Security and Business Process Context" [ label="dc:title" ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/60/" -> "Lhttp://madata/rdf/GraupnerE" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/60/" -> "Lhttp://madata/rdf/SchewerC" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/60/" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/60/" -> "LVisibility of Business Processes - An Information Processing Perspective in the Financial Services Industry" [ label="dc:title" ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/60/" -> "Rhttp://web.eris.uni-mannheim.de/website_supplements/theses/attachments%5C326%5CThesis%20proposal%20final.pdf" [ label="cito:citedBy" ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/19386389.2013.778730#.VjdzlJeVtUQ" -> "Lhttp://madata/rdf/GerolimosM" [ label="dc:creator" ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/19386389.2013.778730#.VjdzlJeVtUQ" -> "LTagging for libraries: A review of the effectiveness of tagging systems for library catalogs" [ label="dc:title" ];
"Rhttp://www.cqvip.com/qk/95888x/201202/40920550.html" -> "L基于概念格的 Folksonomy 知识组织研究——TagCloud 的层级体系构建" [ label="dc:title" ];
"Rhttp://www.cqvip.com/qk/93480x/201305/47338454.html" -> "L国外图书馆管理研究述评" [ label="dc:title" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-24826-9_21" -> "Lhttp://madata/rdf/ChenS" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-24826-9_21" -> "LUser tagging for digital archives: the case of commercial keywords from the grand secretariat" [ label="dc:title" ];
"Rhttp://www.cqvip.com/qk/90226x/201209/43330105.html" -> "L基于标签与群组的学术博客在开放存取平台中的应用研究" [ label="dc:title" ];
"Rhttp://trace.tennessee.edu/utk_gradthes/988/" -> "Lhttp://madata/rdf/KathuriaS" [ label="dc:creator" ];
"Rhttp://trace.tennessee.edu/utk_gradthes/988/" -> "Lquote analysis of social tags on intersectionality for works on Asian women: an exploratory study of LibraryThing" [ label="dc:title" ];
"Rfile:///home/kb/build/madata-evaluation/ijidt.com/index.php/ijidt/article/download/4.2.9/200" -> "Lhttp://madata/rdf/ZaveriP" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/ijidt.com/index.php/ijidt/article/download/4.2.9/200" -> "Lhttp://madata/rdf/AtkekarM" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/ijidt.com/index.php/ijidt/article/download/4.2.9/200" -> "LCollaborative Tagging in Digital Libraries" [ label="dc:title" ];
"Rhttp://www.cais-acsi.ca/ojs/index.php/cais/article/view/616" -> "Lhttp://madata/rdf/AjiferukeI" [ label="dc:creator" ];
"Rhttp://www.cais-acsi.ca/ojs/index.php/cais/article/view/616" -> "Lhttp://madata/rdf/GoodfellowJ" [ label="dc:creator" ];
"Rhttp://www.cais-acsi.ca/ojs/index.php/cais/article/view/616" -> "LEvaluation of the Effectiveness of Tag as an Access Point in a Public Library OPAC" [ label="dc:title" ];
"Rhttp://195.251.240.254:8080/handle/10184/4103" -> "Lhttp://madata/rdf/GerolimosM" [ label="dc:creator" ];
"Rhttp://195.251.240.254:8080/handle/10184/4103" -> "LTagging for Libraries: A Review of the Ef-fectiveness of Tagging Systems for Library Catalogs" [ label="dc:title" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/00220410810912451" -> "Lhttp://madata/rdf/LewandowskiD" [ label="dc:creator" ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/00220410810912451" -> "LThe retrieval effectiveness of web search engines: considering results descriptions" [ label="dc:title" ];
"Rhttp://polaris.bc.unicamp.br/seer/ojs/index.php/rbci/article/view/433" -> "Lhttp://madata/rdf/FurtadoC" [ label="dc:creator" ];
"Rhttp://polaris.bc.unicamp.br/seer/ojs/index.php/rbci/article/view/433" -> "LEducação e bibliotecas digitais Education and digital libraries" [ label="dc:title" ];
"Rhttp://eprints.rclis.org/16583/" -> "Lhttp://madata/rdf/PetersI" [ label="dc:creator" ];
"Rhttp://eprints.rclis.org/16583/" -> "LFolksonomies: Nutzergerechte Schlagwörter als Indexierungswerkzeug für die Massen" [ label="dc:title" ];
"Rhttp://eprints.rclis.org/16583/" -> "Lhttp://madata/rdf/EbeidN" [ label="dc:creator" ];
"Rhttp://eprints.rclis.org/16583/" -> "LKataloganreicherung/user-created quote-oder: Wieso funktioniert mein OPAC nicht wie Amazon?" [ label="dc:title" ];
"Rhttp://journals.ub.uni-heidelberg.de/index.php/akmb-news/article/viewFile/6147/1649" -> "Lhttp://madata/rdf/HohmannG" [ label="dc:creator" ];
"Rhttp://journals.ub.uni-heidelberg.de/index.php/akmb-news/article/viewFile/6147/1649" -> "LSocial Tagging: Inhaltliche Erschließung durch freie Verschlagwortung und die „Klugheit der Masse“" [ label="dc:title" ];
"Rfile:///home/kb/build/madata-evaluation/theses.fh-hagenberg.at/system/files/pdf/Kroiss10.pdf" -> "Lhttp://madata/rdf/KroissA" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/theses.fh-hagenberg.at/system/files/pdf/Kroiss10.pdf" -> "LComputerunterstützte Tagging-Verfahren für Dokumente im Web" [ label="dc:title" ];
"Rhttp://psycnet.apa.org/journals/emo/11/4/860/" -> "Lhttp://madata/rdf/EisenbarthH" [ label="dc:creator" ];
"Rhttp://psycnet.apa.org/journals/emo/11/4/860/" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://psycnet.apa.org/journals/emo/11/4/860/" -> "LHappy mouth and sad eyes: scanning emotional facial expressions." [ label="dc:title" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0301051112001093" -> "Lhttp://madata/rdf/WangelinB" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0301051112001093" -> "Lhttp://madata/rdf/BradleyM" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0301051112001093" -> "Lhttp://madata/rdf/KastnerA" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0301051112001093" -> "Lhttp://madata/rdf/LangP" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0301051112001093" -> "LAffective engagement for facial expressions and emotional scenes: the influence of social anxiety" [ label="dc:title" ];
"Rhttp://www.cpcjournal.org/doi/abs/10.1597/08-244" -> "Lhttp://madata/rdf/Meyer-MarcottyP" [ label="dc:creator" ];
"Rhttp://www.cpcjournal.org/doi/abs/10.1597/08-244" -> "Lhttp://madata/rdf/GerdesA" [ label="dc:creator" ];
"Rhttp://www.cpcjournal.org/doi/abs/10.1597/08-244" -> "Lhttp://madata/rdf/StellzigE" [ label="dc:creator" ];
"Rhttp://www.cpcjournal.org/doi/abs/10.1597/08-244" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://www.cpcjournal.org/doi/abs/10.1597/08-244" -> "LVisual face perception of adults with unilateral cleft lip and palate in comparison to controls-an eye-tracking study" [ label="dc:title" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0167876012006782" -> "Lhttp://madata/rdf/SmithE" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0167876012006782" -> "Lhttp://madata/rdf/MoranT" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0167876012006782" -> "Lhttp://madata/rdf/HajcakG" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0167876012006782" -> "LElectrocortical responses to NIMSTIM facial expressions of emotion" [ label="dc:title" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC3685720/" -> "Lhttp://madata/rdf/AdolphD" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC3685720/" -> "Lhttp://madata/rdf/MeisterL" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC3685720/" -> "Lhttp://madata/rdf/PauseB" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC3685720/" -> "LContext counts! social anxiety modulates the processing of fearful faces in the context of chemosensory anxiety signals" [ label="dc:title" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0191886910006227" -> "Lhttp://madata/rdf/AndersonN" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0191886910006227" -> "Lhttp://madata/rdf/WanL" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0191886910006227" -> "Lhttp://madata/rdf/YoungK" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0191886910006227" -> "Lhttp://madata/rdf/StanfordM" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0191886910006227" -> "LPsychopathic traits predict startle habituation but not modulation in an emotional faces task" [ label="dc:title" ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/08964289.2013.818932" -> "Lhttp://madata/rdf/WeißS" [ label="dc:creator" ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/08964289.2013.818932" -> "Lhttp://madata/rdf/WinkelmannA" [ label="dc:creator" ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/08964289.2013.818932" -> "Lhttp://madata/rdf/DuschekS" [ label="dc:creator" ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/08964289.2013.818932" -> "LRecognition of facially expressed emotions in patients with fibromyalgia syndrome" [ label="dc:title" ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/02699931.2015.1049124" -> "Lhttp://madata/rdf/CalvoM" [ label="dc:creator" ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/02699931.2015.1049124" -> "Lhttp://madata/rdf/NummenmaaL" [ label="dc:creator" ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/02699931.2015.1049124" -> "LPerceptual and affective mechanisms in facial expression recognition: An integrative review" [ label="dc:title" ];
"Rhttp://www.jstor.org/stable/10.5406/amerjpsyc.125.4.0409#pdf_only_tab_quotes" -> "Lhttp://madata/rdf/AltarribaJ" [ label="dc:creator" ];
"Rhttp://www.jstor.org/stable/10.5406/amerjpsyc.125.4.0409#pdf_only_tab_quotes" -> "LEmotion and Mood: Over 120 Years of Contemplation and Exploration in The American Journal of Psychology" [ label="dc:title" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" -> "Lhttp://madata/rdf/PawlikowskiM" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" -> "Lhttp://madata/rdf/CraskeM" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" -> "LAvoidant decision making in social anxiety: the interaction of angry faces and emotional responses" [ label="dc:title" ];
"Rhttp://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short" -> "Lhttp://madata/rdf/VenesvirtaH" [ label="dc:creator" ];
"Rhttp://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short" -> "Lhttp://madata/rdf/SurakkaV" [ label="dc:creator" ];
"Rhttp://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short" -> "Lhttp://madata/rdf/GizatdinovaY" [ label="dc:creator" ];
"Rhttp://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short" -> "Lhttp://madata/rdf/LylykangasJ" [ label="dc:creator" ];
"Rhttp://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short" -> "Lhttp://madata/rdf/SpakovO" [ label="dc:creator" ];
"Rhttp://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short" -> "Lhttp://madata/rdf/VerhoJ" [ label="dc:creator" ];
"Rhttp://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short" -> "Lhttp://madata/rdf/VetekA" [ label="dc:creator" ];
"Rhttp://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short" -> "Lhttp://madata/rdf/LekkalaJ" [ label="dc:creator" ];
"Rhttp://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short" -> "LEmotional Reactions to Point-Light Display Animations" [ label="dc:title" ];
"Rhttps://www.duo.uio.no/handle/10852/35161" -> "Lhttp://madata/rdf/KraftB" [ label="dc:creator" ];
"Rhttps://www.duo.uio.no/handle/10852/35161" -> "LInhibition and rumination in remitted major depressive disorder" [ label="dc:title" ];
"Rhttp://academicworks.cuny.edu/cgi/viewquote.cgi?article=1387&context=gc_etds" -> "Lhttp://madata/rdf/StatuckaM" [ label="dc:creator" ];
"Rhttp://academicworks.cuny.edu/cgi/viewquote.cgi?article=1387&context=gc_etds" -> "LFacial Affect Recognition and Social Functioning in Individuals at Risk for Schizophrenia Spectrum Disorders" [ label="dc:title" ];
"Rhttp://www.theses.fr/2013PA05H121" -> "Lhttp://madata/rdf/AiteA" [ label="dc:creator" ];
"Rhttp://www.theses.fr/2013PA05H121" -> "LProcessus émotionnels et cognitifs dans le développement des capacités de prise de décision sous ambiguïté" [ label="dc:title" ];
"Rhttp://dl.acm.org/citation.cfm?id=2399037" -> "Lhttp://madata/rdf/KuusinenK" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2399037" -> "Lhttp://madata/rdf/Väänänen-Vainio-MattilaK" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2399037" -> "LHow to make agile UX work more efficient: management and sales perspectives" [ label="dc:title" ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" -> "Lhttp://madata/rdf/MuellerB" [ label="dc:creator" ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" -> "LEnterprise Systems–A Research Agenda" [ label="dc:title" ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.258.6574&rep=rep1&type=pdf" -> "Lhttp://madata/rdf/PashaM" [ label="dc:creator" ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.258.6574&rep=rep1&type=pdf" -> "LDeveloping Business Process Management Capabilities of Undergraduate IT Students" [ label="dc:title" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-36285-9_47" -> "Lhttp://madata/rdf/TangJ" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-36285-9_47" -> "Lhttp://madata/rdf/PeeL" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-36285-9_47" -> "Lhttp://madata/rdf/JunichiI" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-36285-9_47" -> "LBusiness process orientation: an empirical study of its impact on employees' innovativeness" [ label="dc:title" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1" -> "Lhttp://madata/rdf/StuckenbergS" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1" -> "Lhttp://madata/rdf/KudeT" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1" -> "Lhttp://madata/rdf/HeinzlA" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1" -> "LUnderstanding the role of organizational integration in developing and operating Software-as-a-Service" [ label="dc:title" ];
"Rhttp://www.researchgate.net/profile/Karl_Werder/publication/272360138_Exploring_Principles_of_User-Centered_Agile_Software_Development_A_Literature_Review/links/55003b0f0cf260c99e8f892d.pdf" -> "Lhttp://madata/rdf/MaecheA" [ label="dc:creator" ];
"Rhttp://www.researchgate.net/profile/Karl_Werder/publication/272360138_Exploring_Principles_of_User-Centered_Agile_Software_Development_A_Literature_Review/links/55003b0f0cf260c99e8f892d.pdf" -> "Lhttp://madata/rdf/WerderK" [ label="dc:creator" ];
"Rhttp://www.researchgate.net/profile/Karl_Werder/publication/272360138_Exploring_Principles_of_User-Centered_Agile_Software_Development_A_Literature_Review/links/55003b0f0cf260c99e8f892d.pdf" -> "LExploring Principles of User-Centered Agile Software Development: A Literature Review" [ label="dc:title" ];
"Rhttp://www.pacis-net.org/file/2012/PACIS2012-155.pdf" -> "Lhttp://madata/rdf/StuckenbergS" [ label="dc:creator" ];
"Rhttp://www.pacis-net.org/file/2012/PACIS2012-155.pdf" -> "LExploring The Role Of Integration In Software-As-A-Service Failure" [ label="dc:title" ];
"Rhttp://dspace.cc.tut.fi/dpub/handle/123456789/21376" -> "Lhttp://madata/rdf/OllbergK" [ label="dc:creator" ];
"Rhttp://dspace.cc.tut.fi/dpub/handle/123456789/21376" -> "LUser Experience as a basis for Management Decision Making Processes" [ label="dc:title" ];
"Rhttp://dl.acm.org/citation.cfm?id=2399037" -> "Lhttp://madata/rdf/KuusinenK" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2399037" -> "Lhttp://madata/rdf/Väänänen-Vainio-MattilaK" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2399037" -> "LHow to make agile UX work more efficient: management and sales perspectives" [ label="dc:title" ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" -> "Lhttp://madata/rdf/MuellerB" [ label="dc:creator" ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" -> "LEnterprise Systems–A Research Agenda" [ label="dc:title" ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.258.6574&rep=rep1&type=pdf" -> "Lhttp://madata/rdf/PashaM" [ label="dc:creator" ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.258.6574&rep=rep1&type=pdf" -> "LDeveloping Business Process Management Capabilities of Undergraduate IT Students" [ label="dc:title" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-36285-9_47" -> "Lhttp://madata/rdf/TangJ" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-36285-9_47" -> "Lhttp://madata/rdf/PeeL" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-36285-9_47" -> "Lhttp://madata/rdf/JunichiI" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-36285-9_47" -> "LBusiness process orientation: an empirical study of its impact on employees' innovativeness" [ label="dc:title" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1" -> "Lhttp://madata/rdf/StuckenbergS" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1" -> "Lhttp://madata/rdf/KudeT" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1" -> "Lhttp://madata/rdf/HeinzlA" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1" -> "LUnderstanding the role of organizational integration in developing and operating Software-as-a-Service" [ label="dc:title" ];
"Rhttp://www.researchgate.net/profile/Karl_Werder/publication/272360138_Exploring_Principles_of_User-Centered_Agile_Software_Development_A_Literature_Review/links/55003b0f0cf260c99e8f892d.pdf" -> "Lhttp://madata/rdf/MaecheA" [ label="dc:creator" ];
"Rhttp://www.researchgate.net/profile/Karl_Werder/publication/272360138_Exploring_Principles_of_User-Centered_Agile_Software_Development_A_Literature_Review/links/55003b0f0cf260c99e8f892d.pdf" -> "Lhttp://madata/rdf/WerderK" [ label="dc:creator" ];
"Rhttp://www.researchgate.net/profile/Karl_Werder/publication/272360138_Exploring_Principles_of_User-Centered_Agile_Software_Development_A_Literature_Review/links/55003b0f0cf260c99e8f892d.pdf" -> "LExploring Principles of User-Centered Agile Software Development: A Literature Review" [ label="dc:title" ];
"Rhttp://www.pacis-net.org/file/2012/PACIS2012-155.pdf" -> "Lhttp://madata/rdf/StuckenbergS" [ label="dc:creator" ];
"Rhttp://www.pacis-net.org/file/2012/PACIS2012-155.pdf" -> "LExploring The Role Of Integration In Software-As-A-Service Failure" [ label="dc:title" ];
"Rhttp://dspace.cc.tut.fi/dpub/handle/123456789/21376" -> "Lhttp://madata/rdf/OllbergK" [ label="dc:creator" ];
"Rhttp://dspace.cc.tut.fi/dpub/handle/123456789/21376" -> "LUser Experience as a basis for Management Decision Making Processes" [ label="dc:title" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-07443-6_20#page-1" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-07443-6_20#page-1" -> "Lhttp://madata/rdf/MeilickeC" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-07443-6_20#page-1" -> "Lhttp://madata/rdf/PonzettoS" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-07443-6_20#page-1" -> "LA probabilistic approach for integrating heterogeneous knowledge sources" [ label="dc:title" ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.403.846&rep=rep1&type=pdf" -> "Lhttp://madata/rdf/HellmannS" [ label="dc:creator" ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.403.846&rep=rep1&type=pdf" -> "Lhttp://madata/rdf/FilipowskaA" [ label="dc:creator" ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.403.846&rep=rep1&type=pdf" -> "Lhttp://madata/rdf/BarrièreC" [ label="dc:creator" ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.403.846&rep=rep1&type=pdf" -> "Lhttp://madata/rdf/MendesP" [ label="dc:creator" ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.403.846&rep=rep1&type=pdf" -> "Lhttp://madata/rdf/KontokostasD" [ label="dc:creator" ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.403.846&rep=rep1&type=pdf" -> "LNLP and DBpedia: An Upward Knowledge Acquisition Spiral" [ label="dc:title" ];
"Rhttps://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FcdkuD&sig=dSvmblWprVAr7Bii7Wfyrh0qRYM#v=onepage&q&f=false" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttps://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FcdkuD&sig=dSvmblWprVAr7Bii7Wfyrh0qRYM#v=onepage&q&f=false" -> "Lhttp://madata/rdf/MeilickeC" [ label="dc:creator" ];
"Rhttps://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FcdkuD&sig=dSvmblWprVAr7Bii7Wfyrh0qRYM#v=onepage&q&f=false" -> "Lhttp://madata/rdf/StuckenschmidtH" [ label="dc:creator" ];
"Rhttps://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FcdkuD&sig=dSvmblWprVAr7Bii7Wfyrh0qRYM#v=onepage&q&f=false" -> "LSemantifying triples from open information extraction systems" [ label="dc:title" ];
"Rhttp://www.qucosa.de/recherche/frontdoor/cache.off?tx_slubopus4frontend[id]=urn%3Anbn%3Ade%3Absz%3A15-qucosa-157932" -> "Lhttp://madata/rdf/HellmannS" [ label="dc:creator" ];
"Rhttp://www.qucosa.de/recherche/frontdoor/cache.off?tx_slubopus4frontend[id]=urn%3Anbn%3Ade%3Absz%3A15-qucosa-157932" -> "LIntegrating Natural Language Processing (NLP) and Language Resources Using Linked Data" [ label="dc:title" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-07983-7_11#page-1" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-07983-7_11#page-1" -> "Lhttp://madata/rdf/SchuhmacherM" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-07983-7_11#page-1" -> "LEntity Linking for Open Information Extraction" [ label="dc:title" ];
"Rhttp://www.aaai.org/ocs/index.php/WS/AAAIW14/paper/view/8722" -> "Lhttp://madata/rdf/NiepertM" [ label="dc:creator" ];
"Rhttp://www.aaai.org/ocs/index.php/WS/AAAIW14/paper/view/8722" -> "Lhttp://madata/rdf/DomingosP" [ label="dc:creator" ];
"Rhttp://www.aaai.org/ocs/index.php/WS/AAAIW14/paper/view/8722" -> "LTractable Probabilistic Knowledge Bases: Wikipedia and Beyond" [ label="dc:title" ];
"Rhttp://dl.acm.org/citation.cfm?id=2556202" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2556202" -> "LIntegration of large scale knowledge bases using probabilistic graphical models" [ label="dc:title" ];
"Rhttp://dl.acm.org/citation.cfm?id=2741139" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2741139" -> "Lhttp://madata/rdf/MeilickeC" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2741139" -> "Lhttp://madata/rdf/StuckenschmidtH" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2741139" -> "LEnriching Structured Knowledge with Open Information" [ label="dc:title" ];
"Rhttp://www.akbc.ws/2014/submissions/akbc2014_submission_28.pdf" -> "Lhttp://madata/rdf/NiepertM" [ label="dc:creator" ];
"Rhttp://www.akbc.ws/2014/submissions/akbc2014_submission_28.pdf" -> "Lhttp://madata/rdf/SinghS" [ label="dc:creator" ];
"Rhttp://www.akbc.ws/2014/submissions/akbc2014_submission_28.pdf" -> "LOut of Many, One: Unifying Web-Extracted Knowledge Bases" [ label="dc:title" ];
"Rhttp://www.igi-global.com/article/improving-the-quality-of-linked-data-using-statistical-distributions/116452" -> "Lhttp://madata/rdf/PaulheimH" [ label="dc:creator" ];
"Rhttp://www.igi-global.com/article/improving-the-quality-of-linked-data-using-statistical-distributions/116452" -> "Lhttp://madata/rdf/BizerC" [ label="dc:creator" ];
"Rhttp://www.igi-global.com/article/improving-the-quality-of-linked-data-using-statistical-distributions/116452" -> "LImproving the quality of linked data using statistical distributions" [ label="dc:title" ];
"Rhttp://ceur-ws.org/Vol-1162/WoDOOM14-proceedings.pdf#page=33" -> "Lhttp://madata/rdf/PaulheimH" [ label="dc:creator" ];
"Rhttp://ceur-ws.org/Vol-1162/WoDOOM14-proceedings.pdf#page=33" -> "LIdentifying wrong links between datasets by multi-dimensional outlier detection" [ label="dc:title" ];
"Rhttps://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FdcoyF&sig=6V93jKGmnVtAIMz_-ppAdGARS70#v=onepage&q&f=false" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttps://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FdcoyF&sig=6V93jKGmnVtAIMz_-ppAdGARS70#v=onepage&q&f=false" -> "Lhttp://madata/rdf/MeilickeC" [ label="dc:creator" ];
"Rhttps://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FdcoyF&sig=6V93jKGmnVtAIMz_-ppAdGARS70#v=onepage&q&f=false" -> "LSemantifying triples from open information extraction systems" [ label="dc:title" ];
"Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" -> "Lhttp://madata/rdf/BoviC" [ label="dc:creator" ];
"Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" -> "Lhttp://madata/rdf/Espinosa-AnkeL" [ label="dc:creator" ];
"Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" -> "Lhttp://madata/rdf/NavigliR" [ label="dc:creator" ];
"Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" -> "LKnowledge Base Unification via Sense Embeddings and Disambiguation" [ label="dc:title" ];
"Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" -> "Lhttp://madata/rdf/LiuW" [ label="dc:creator" ];
"Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" -> "Lhttp://madata/rdf/LiuJ" [ label="dc:creator" ];
"Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" -> "Lhttp://madata/rdf/QianY" [ label="dc:creator" ];
"Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" -> "Lhttp://madata/rdf/WeiB" [ label="dc:creator" ];
"Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" -> "Lhttp://madata/rdf/ZhengQ" [ label="dc:creator" ];
"Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" -> "LTruth Discovery to Resolve Object Conflicts in Linked Data" [ label="dc:title" ];
"Rhttps://tacl2013.cs.columbia.edu/ojs/index.php/tacl/article/view/660" -> "Lhttp://madata/rdf/BoviC" [ label="dc:creator" ];
"Rhttps://tacl2013.cs.columbia.edu/ojs/index.php/tacl/article/view/660" -> "Lhttp://madata/rdf/TelescaL" [ label="dc:creator" ];
"Rhttps://tacl2013.cs.columbia.edu/ojs/index.php/tacl/article/view/660" -> "Lhttp://madata/rdf/NavigliR" [ label="dc:creator" ];
"Rhttps://tacl2013.cs.columbia.edu/ojs/index.php/tacl/article/view/660" -> "LLarge-Scale Information Extraction from Textual Definitions through Deep Syntactic and Semantic Analysis" [ label="dc:title" ];
"Rhttp://www.semantic-web-journal.net/system/files/swj1083.pdf" -> "Lhttp://madata/rdf/PaulheimH" [ label="dc:creator" ];
"Rhttp://www.semantic-web-journal.net/system/files/swj1083.pdf" -> "LAutomatic Knowledge Graph Refinement: A Survey of Approaches and Evaluation Methods" [ label="dc:title" ];
"Rhttp://dl.acm.org/citation.cfm?id=2741139" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2741139" -> "Lhttp://madata/rdf/MeilickeC" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2741139" -> "Lhttp://madata/rdf/StuckenschmidtH" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2741139" -> "LEnriching Structured Knowledge with Open Information" [ label="dc:title" ];
"Rfile:///home/kb/build/madata-evaluation/www.mtg.upf.es/system/files/publications/CIM14_MAIN.pdf" -> "Lhttp://madata/rdf/DuttaA" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/www.mtg.upf.es/system/files/publications/CIM14_MAIN.pdf" -> "Lhttp://madata/rdf/MeilickeC" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/www.mtg.upf.es/system/files/publications/CIM14_MAIN.pdf" -> "Lhttp://madata/rdf/StuckenschmidtH" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/www.mtg.upf.es/system/files/publications/CIM14_MAIN.pdf" -> "LAutomatic creation of knowledge graphs from digital musical document libraries" [ label="dc:title" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4100576/" -> "Lhttp://madata/rdf/BublatzkyF" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4100576/" -> "Lhttp://madata/rdf/GerdesA" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4100576/" -> "Lhttp://madata/rdf/WhiteA" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4100576/" -> "Lhttp://madata/rdf/RiemerM" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4100576/" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4100576/" -> "LSocial and emotional relevance in face processing: happy faces of future interaction partners enhance the late positive potential" [ label="dc:title" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0887618514000292" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0887618514000292" -> "Lhttp://madata/rdf/Brandm" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0887618514000292" -> "Lhttp://madata/rdf/PawlikowskiM" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0887618514000292" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0887618514000292" -> "LThe cost of fear: avoidant decision making in a spider gambling task" [ label="dc:title" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4220662/" -> "Lhttp://madata/rdf/DerntlB" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4220662/" -> "Lhttp://madata/rdf/PintzingerN" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4220662/" -> "Lhttp://madata/rdf/Kryspin-ExnerI" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4220662/" -> "Lhttp://madata/rdf/Schöpfv" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4220662/" -> "LThe impact of sex hormone concentrations on decision-making in females and males" [ label="dc:title" ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2546159" -> "Lhttp://madata/rdf/KrellM" [ label="dc:creator" ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2546159" -> "LFear and Loathing in the Judicial Process: Comparative Case Studies of Judicial Responses to Terrorism" [ label="dc:title" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" -> "Lhttp://madata/rdf/PawlinowskiM" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" -> "Lhttp://madata/rdf/CraskeM" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" -> "LAvoidant decision making in social anxiety: the interaction of angry faces and emotional responses" [ label="dc:title" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/NilesA" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/CraskeM" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "LAvoidant decision-making in social anxiety disorder: A laboratory task linked to in vivo anxiety and treatment outcome" [ label="dc:title" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/NilesA" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/CraskeM" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "LAvoidant decision-making in social anxiety disorder: A laboratory task linked to in vivo anxiety and treatment outcome" [ label="dc:title" ];
"Rfile:///home/kb/build/madata-evaluation/ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=7302488" -> "Lhttp://madata/rdf/KuusinenK" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=7302488" -> "LOvercoming Challenges in Agile User Experience Work: Cross-Case Analysis of Two Large Software Organizations" [ label="dc:title" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-22698-9_3" -> "Lhttp://madata/rdf/KuusinenK" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-22698-9_3" -> "LTask Allocation Between UX Specialists and Developers in Agile Software Development Projects" [ label="dc:title" ];
"Rhttps://books.google.de/books?hl=de&lr=&id=lEquCgAAQBAJ&oi=fnd&pg=PA233&ots=8UJy5d6tdR&sig=gdvKgVW7-OB_fBialpAfcXmdpxE#v=onepage&q&f=false" -> "Lhttp://madata/rdf/KuusinenK" [ label="dc:creator" ];
"Rhttps://books.google.de/books?hl=de&lr=&id=lEquCgAAQBAJ&oi=fnd&pg=PA233&ots=8UJy5d6tdR&sig=gdvKgVW7-OB_fBialpAfcXmdpxE#v=onepage&q&f=false" -> "LContinuous User Experience Development" [ label="dc:title" ];
"Rhttp://www.researchandinnovationbook.com/PROCEEDINGS/CITA2015/Archives/papers/paper28.pdf" -> "Lhttp://madata/rdf/FarinangoC" [ label="dc:creator" ];
"Rhttp://www.researchandinnovationbook.com/PROCEEDINGS/CITA2015/Archives/papers/paper28.pdf" -> "Lhttp://madata/rdf/BenavidesJ" [ label="dc:creator" ];
"Rhttp://www.researchandinnovationbook.com/PROCEEDINGS/CITA2015/Archives/papers/paper28.pdf" -> "Lhttp://madata/rdf/LópezD" [ label="dc:creator" ];
"Rhttp://www.researchandinnovationbook.com/PROCEEDINGS/CITA2015/Archives/papers/paper28.pdf" -> "LOpenUP/MMU-ISO Process Updated According to the Activities and Recommendations of the ISO 9241-210 Standard" [ label="dc:title" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-39137-8_21" -> "Lhttp://madata/rdf/AkhilesgK" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-39137-8_21" -> "Lhttp://madata/rdf/SindhujaC" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-39137-8_21" -> "Lhttp://madata/rdf/KahaiS" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-39137-8_21" -> "LExtending Role of “I” Virtually–Identity Performance and Their Influence on Individual Behaviour and Team Performance in Globally Distributed Work Virtual Teams" [ label="dc:title" ];
"Rhttp://dl.acm.org/citation.cfm?id=2775462" -> "Lhttp://madata/rdf/JungH" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2775462" -> "Lhttp://madata/rdf/HongS" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2775462" -> "Lhttp://madata/rdf/MeasP" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2775462" -> "Lhttp://madata/rdf/ZachryM" [ label="dc:creator" ];
"Rhttp://dl.acm.org/citation.cfm?id=2775462" -> "LDesigning tools to support advanced users in new forms of social media interaction" [ label="dc:title" ];
"Rfile:///home/kb/build/madata-evaluation/link.springer.com/chapter/10.1007/978-3-642-39137-8_27" -> "Lhttp://madata/rdf/LiY" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/link.springer.com/chapter/10.1007/978-3-642-39137-8_27" -> "Lhttp://madata/rdf/SkulasonA" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/link.springer.com/chapter/10.1007/978-3-642-39137-8_27" -> "LUncovering the Effects of Cultural Intelligence on Cross-Cultural Virtual Collaboration Processes" [ label="dc:title" ];
"Rhttp://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6759189&tag=1" -> "Lhttp://madata/rdf/ScheererA" [ label="dc:creator" ];
"Rhttp://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6759189&tag=1" -> "Lhttp://madata/rdf/HildenbrandT" [ label="dc:creator" ];
"Rhttp://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6759189&tag=1" -> "Lhttp://madata/rdf/KudeT" [ label="dc:creator" ];
"Rhttp://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6759189&tag=1" -> "LCoordination in Large-Scale Agile Software Development: A Multiteam Systems Perspective" [ label="dc:title" ];
"Rhttp://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=6759181" -> "Lhttp://madata/rdf/HummelM" [ label="dc:creator" ];
"Rhttp://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=6759181" -> "LState-of-the-Art: A Systematic Literature Review on Agile Information Systems Development" [ label="dc:title" ];
"Rhttp://aisel.aisnet.org/icis2014/proceedings/ProjectManagement/17/" -> "Lhttp://madata/rdf/ScheererA" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/icis2014/proceedings/ProjectManagement/17/" -> "Lhttp://madata/rdf/KudeT" [ label="dc:creator" ];
"Rhttp://aisel.aisnet.org/icis2014/proceedings/ProjectManagement/17/" -> "LExploring Coordination in Large-Scale Agile Software Development: A Multiteam Systems Perspective" [ label="dc:title" ];
"Rhttp://www.diva-portal.org/smash/record.jsf?pid=diva2%3A830730&dswid=4164" -> "Lhttp://madata/rdf/RahmanM" [ label="dc:creator" ];
"Rhttp://www.diva-portal.org/smash/record.jsf?pid=diva2%3A830730&dswid=4164" -> "Lhttp://madata/rdf/DasA" [ label="dc:creator" ];
"Rhttp://www.diva-portal.org/smash/record.jsf?pid=diva2%3A830730&dswid=4164" -> "LMITIGATION APPROACHES FOR COMMON ISSUES AND CHALLENGES WHEN USING SCRUM IN GLOBAL SOFTWARE DEVELOPMENT" [ label="dc:title" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4248815/" -> "Lhttp://madata/rdf/GerdesA" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4248815/" -> "Lhttp://madata/rdf/WieserM" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4248815/" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4248815/" -> "LEmotional pictures and sounds: a review of multimodal interactions of emotion cues in multiple domains" [ label="dc:title" ];
"Rfile:///home/kb/build/madata-evaluation/ref09" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/ref09" -> "Lhttp://madata/rdf/PawlikowskiM" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/ref09" -> "Lhttp://madata/rdf/CraskeM" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/ref09" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rfile:///home/kb/build/madata-evaluation/ref09" -> "LAvoidant decision making in social anxiety: the interaction of angry faces and emotional responses" [ label="dc:title" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/PittigA" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/AlpersG" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/NilesA" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "Lhttp://madata/rdf/CraskeM" [ label="dc:creator" ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" -> "LAvoidant decision-making in social anxiety disorder: A laboratory task linked to in vivo anxiety and treatment outcome" [ label="dc:title" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-18714-3_32" -> "Lhttp://madata/rdf/MoranaS" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-18714-3_32" -> "Lhttp://madata/rdf/GerardsT" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-18714-3_32" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-18714-3_32" -> "LITSM ProcessGuide–A Process Guidance System for IT Service Management" [ label="dc:title" ];
"Rhttps://cora.ucc.ie/handle/10468/1814" -> "Lhttp://madata/rdf/MoranaS" [ label="dc:creator" ];
"Rhttps://cora.ucc.ie/handle/10468/1814" -> "Lhttp://madata/rdf/SchachtS" [ label="dc:creator" ];
"Rhttps://cora.ucc.ie/handle/10468/1814" -> "Lhttp://madata/rdf/GerardsT" [ label="dc:creator" ];
"Rhttps://cora.ucc.ie/handle/10468/1814" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttps://cora.ucc.ie/handle/10468/1814" -> "LITSM ProcessGuide–a longitudinal and multi-method field study for real-world DSR artifact evaluation" [ label="dc:title" ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" -> "Lhttp://madata/rdf/MaedcheA" [ label="dc:creator" ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" -> "Lhttp://madata/rdf/MuellerB" [ label="dc:creator" ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" -> "LEnterprise Systems - A Research Agenda" [ label="dc:title" ];
"Rhttp://dx.doi.org/10.1108/MRR-04-2013-0085" -> "Lhttp://madata/rdf/LebekB" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1108/MRR-04-2013-0085" -> "Lhttp://madata/rdf/UffenJ" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1108/MRR-04-2013-0085" -> "Lhttp://madata/rdf/NeumannM" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1108/MRR-04-2013-0085" -> "Lhttp://madata/rdf/HohlerB" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1108/MRR-04-2013-0085" -> "Lhttp://madata/rdf/BreitnerM" [ label="dc:creator" ];
"Rhttp://dx.doi.org/10.1108/MRR-04-2013-0085" -> "LInformation security awareness and behavior: a theory-based literature review" [ label="dc:title" ];
"Rhttp://link.springer.com/article/10.1007/s10916-013-9984-x" -> "Lhttp://madata/rdf/AydinÖ" [ label="dc:creator" ];
"Rhttp://link.springer.com/article/10.1007/s10916-013-9984-x" -> "Lhttp://madata/rdf/ChouseinoglouO" [ label="dc:creator" ];
"Rhttp://link.springer.com/article/10.1007/s10916-013-9984-x" -> "LFuzzy Assessment of Health Information System Users' Security Awareness" [ label="dc:title" ];
"Rhttps://domino.fov.uni-mb.si/proceedings.nsf/Proceedings/08209464067DDF2AC1257E5B0048279B/$File/1_Alic.pdf" -> "Lhttp://madata/rdf/AlićI" [ label="dc:creator" ];
"Rhttps://domino.fov.uni-mb.si/proceedings.nsf/Proceedings/08209464067DDF2AC1257E5B0048279B/$File/1_Alic.pdf" -> "LFinancial Market Surveillance Decision Support: An Explanatory Design Theory" [ label="dc:title" ];
"Rhttp://web.eris.uni-mannheim.de/website_supplements/theses/attachments%5C326%5CThesis%20proposal%20final.pdf" -> "Lhttp://madata/rdf/KalidindiV" [ label="dc:creator" ];
"Rhttp://web.eris.uni-mannheim.de/website_supplements/theses/attachments%5C326%5CThesis%20proposal%20final.pdf" -> "LProcess Visibility Requirements and Capabilities-Conceptual Perspectives and Operationalization" [ label="dc:title" ];
// Resources
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/1" [ label="https://madata.bib.uni-mannheim.de/id/eprint/1", shape = ellipse, color = blue ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/07378830911007664" [ label="http://www.emeraldinsight.com/doi/full/10.1108/07378830911007664", shape = ellipse, color = blue ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/2103" [ label="https://ub-madoc.bib.uni-mannheim.de/2103", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/116" [ label="https://madata.bib.uni-mannheim.de/id/eprint/116", shape = ellipse, color = blue ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/30291" [ label="https://ub-madoc.bib.uni-mannheim.de/30291", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/2" [ label="https://madata.bib.uni-mannheim.de/id/eprint/2", shape = ellipse, color = blue ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/33134" [ label="https://ub-madoc.bib.uni-mannheim.de/33134", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/74" [ label="https://madata.bib.uni-mannheim.de/id/eprint/74", shape = ellipse, color = blue ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/29687" [ label="https://ub-madoc.bib.uni-mannheim.de/29687", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/75" [ label="https://madata.bib.uni-mannheim.de/id/eprint/75", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/65" [ label="https://madata.bib.uni-mannheim.de/id/eprint/65", shape = ellipse, color = blue ];
"Rhttp://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf" [ label="http://publications.wim.uni-mannheim.de/informatik/lski/Dutta13IntegratingIE.pdf", shape = ellipse, color = blue ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/35518" [ label="https://ub-madoc.bib.uni-mannheim.de/35518", shape = ellipse, color = blue ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36461" [ label="https://ub-madoc.bib.uni-mannheim.de/36461", shape = ellipse, color = blue ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/36671" [ label="https://ub-madoc.bib.uni-mannheim.de/36671", shape = ellipse, color = blue ];
"Rfile:///home/kb/build/madata-evaluation/output.xml" [ label="file:///home/kb/build/madata-evaluation/output.xml", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/86" [ label="https://madata.bib.uni-mannheim.de/id/eprint/86", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/28" [ label="https://madata.bib.uni-mannheim.de/id/eprint/28", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/23" [ label="https://madata.bib.uni-mannheim.de/id/eprint/23", shape = ellipse, color = blue ];
"Rhttp://dx.doi.org/10.1007/978-3-642-41338-4_25" [ label="http://dx.doi.org/10.1007/978-3-642-41338-4_25", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/72" [ label="https://madata.bib.uni-mannheim.de/id/eprint/72", shape = ellipse, color = blue ];
"Rhttp://ub-madoc.bib.uni-mannheim.de/36139/" [ label="http://ub-madoc.bib.uni-mannheim.de/36139/", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/73/" [ label="https://madata.bib.uni-mannheim.de/id/eprint/73/", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/111" [ label="https://madata.bib.uni-mannheim.de/id/eprint/111", shape = ellipse, color = blue ];
"Rhttp://dx.doi.org/10.1037/a0036136" [ label="http://dx.doi.org/10.1037/a0036136", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/112" [ label="https://madata.bib.uni-mannheim.de/id/eprint/112", shape = ellipse, color = blue ];
"Rhttp://dx.doi.org/10.3389/fpsyg.2014.01050" [ label="http://dx.doi.org/10.3389/fpsyg.2014.01050", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/95" [ label="https://madata.bib.uni-mannheim.de/id/eprint/95", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/93" [ label="https://madata.bib.uni-mannheim.de/id/eprint/93", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/94" [ label="https://madata.bib.uni-mannheim.de/id/eprint/94", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/90" [ label="https://madata.bib.uni-mannheim.de/id/eprint/90", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/87" [ label="https://madata.bib.uni-mannheim.de/id/eprint/87", shape = ellipse, color = blue ];
"Rhttp://www.aclweb.org/anthology/W14-5410" [ label="http://www.aclweb.org/anthology/W14-5410", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/80" [ label="https://madata.bib.uni-mannheim.de/id/eprint/80", shape = ellipse, color = blue ];
"Rhttp://dx.doi.org/10.1016/j.infsof.2015.01.004" [ label="http://dx.doi.org/10.1016/j.infsof.2015.01.004", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/67" [ label="https://madata.bib.uni-mannheim.de/id/eprint/67", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/60" [ label="https://madata.bib.uni-mannheim.de/id/eprint/60", shape = ellipse, color = blue ];
"Rhttp://dx.doi.org/10.1007/978-3-642-39137-8_27" [ label="http://dx.doi.org/10.1007/978-3-642-39137-8_27", shape = ellipse, color = blue ];
"Rhttp://dl.acm.org/citation.cfm?id=2160895" [ label="http://dl.acm.org/citation.cfm?id=2160895", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/62" [ label="https://madata.bib.uni-mannheim.de/id/eprint/62", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/61" [ label="https://madata.bib.uni-mannheim.de/id/eprint/61", shape = ellipse, color = blue ];
"Rhttp://aisel.aisnet.org/icis2012/proceedings/ResearchInProgress/36/" [ label="http://aisel.aisnet.org/icis2012/proceedings/ResearchInProgress/36/", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/57" [ label="https://madata.bib.uni-mannheim.de/id/eprint/57", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/113" [ label="https://madata.bib.uni-mannheim.de/id/eprint/113", shape = ellipse, color = blue ];
"Rhttp://dx.doi.org/10.1016/j.janxdis.2014.03.001" [ label="http://dx.doi.org/10.1016/j.janxdis.2014.03.001", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/76" [ label="https://madata.bib.uni-mannheim.de/id/eprint/76", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/149" [ label="https://madata.bib.uni-mannheim.de/id/eprint/149", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/148" [ label="https://madata.bib.uni-mannheim.de/id/eprint/148", shape = ellipse, color = blue ];
"Rhttps://ub-madoc.bib.uni-mannheim.de/37039" [ label="https://ub-madoc.bib.uni-mannheim.de/37039", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/151" [ label="https://madata.bib.uni-mannheim.de/id/eprint/151", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/150" [ label="https://madata.bib.uni-mannheim.de/id/eprint/150", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/152" [ label="https://madata.bib.uni-mannheim.de/id/eprint/152", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/145" [ label="https://madata.bib.uni-mannheim.de/id/eprint/145", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/136" [ label="https://madata.bib.uni-mannheim.de/id/eprint/136", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/134" [ label="https://madata.bib.uni-mannheim.de/id/eprint/134", shape = ellipse, color = blue ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/61/" [ label="http://aisel.aisnet.org/ecis2015_cr/61/", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/127" [ label="https://madata.bib.uni-mannheim.de/id/eprint/127", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/121" [ label="https://madata.bib.uni-mannheim.de/id/eprint/121", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/68" [ label="https://madata.bib.uni-mannheim.de/id/eprint/68", shape = ellipse, color = blue ];
"Rhttp://aisel.aisnet.org/cgi/viewquote.cgi?article=1126&context=ecis2012" [ label="http://aisel.aisnet.org/cgi/viewquote.cgi?article=1126&context=ecis2012", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/129" [ label="https://madata.bib.uni-mannheim.de/id/eprint/129", shape = ellipse, color = blue ];
"Rhttp://aisel.aisnet.org/ecis2015_cr/60/" [ label="http://aisel.aisnet.org/ecis2015_cr/60/", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/118" [ label="https://madata.bib.uni-mannheim.de/id/eprint/118", shape = ellipse, color = blue ];
"Rhttps://madata.bib.uni-mannheim.de/id/eprint/142" [ label="https://madata.bib.uni-mannheim.de/id/eprint/142", shape = ellipse, color = blue ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/19386389.2013.778730#.VjdzlJeVtUQ" [ label="http://www.tandfonline.com/doi/abs/10.1080/19386389.2013.778730#.VjdzlJeVtUQ", shape = ellipse, color = blue ];
"Rhttp://www.cqvip.com/qk/95888x/201202/40920550.html" [ label="http://www.cqvip.com/qk/95888x/201202/40920550.html", shape = ellipse, color = blue ];
"Rhttp://www.cqvip.com/qk/93480x/201305/47338454.html" [ label="http://www.cqvip.com/qk/93480x/201305/47338454.html", shape = ellipse, color = blue ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-24826-9_21" [ label="http://link.springer.com/chapter/10.1007/978-3-642-24826-9_21", shape = ellipse, color = blue ];
"Rhttp://www.cqvip.com/qk/90226x/201209/43330105.html" [ label="http://www.cqvip.com/qk/90226x/201209/43330105.html", shape = ellipse, color = blue ];
"Rhttp://trace.tennessee.edu/utk_gradthes/988/" [ label="http://trace.tennessee.edu/utk_gradthes/988/", shape = ellipse, color = blue ];
"Rfile:///home/kb/build/madata-evaluation/ijidt.com/index.php/ijidt/article/download/4.2.9/200" [ label="file:///home/kb/build/madata-evaluation/ijidt.com/index.php/ijidt/article/download/4.2.9/200", shape = ellipse, color = blue ];
"Rhttp://www.cais-acsi.ca/ojs/index.php/cais/article/view/616" [ label="http://www.cais-acsi.ca/ojs/index.php/cais/article/view/616", shape = ellipse, color = blue ];
"Rhttp://195.251.240.254:8080/handle/10184/4103" [ label="http://195.251.240.254:8080/handle/10184/4103", shape = ellipse, color = blue ];
"Rhttp://www.emeraldinsight.com/doi/full/10.1108/00220410810912451" [ label="http://www.emeraldinsight.com/doi/full/10.1108/00220410810912451", shape = ellipse, color = blue ];
"Rhttp://polaris.bc.unicamp.br/seer/ojs/index.php/rbci/article/view/433" [ label="http://polaris.bc.unicamp.br/seer/ojs/index.php/rbci/article/view/433", shape = ellipse, color = blue ];
"Rhttp://eprints.rclis.org/16583/" [ label="http://eprints.rclis.org/16583/", shape = ellipse, color = blue ];
"Rhttp://journals.ub.uni-heidelberg.de/index.php/akmb-news/article/viewFile/6147/1649" [ label="http://journals.ub.uni-heidelberg.de/index.php/akmb-news/article/viewFile/6147/1649", shape = ellipse, color = blue ];
"Rfile:///home/kb/build/madata-evaluation/theses.fh-hagenberg.at/system/files/pdf/Kroiss10.pdf" [ label="file:///home/kb/build/madata-evaluation/theses.fh-hagenberg.at/system/files/pdf/Kroiss10.pdf", shape = ellipse, color = blue ];
"Rhttp://psycnet.apa.org/journals/emo/11/4/860/" [ label="http://psycnet.apa.org/journals/emo/11/4/860/", shape = ellipse, color = blue ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0301051112001093" [ label="http://www.sciencedirect.com/science/article/pii/S0301051112001093", shape = ellipse, color = blue ];
"Rhttp://www.cpcjournal.org/doi/abs/10.1597/08-244" [ label="http://www.cpcjournal.org/doi/abs/10.1597/08-244", shape = ellipse, color = blue ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0167876012006782" [ label="http://www.sciencedirect.com/science/article/pii/S0167876012006782", shape = ellipse, color = blue ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC3685720/" [ label="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3685720/", shape = ellipse, color = blue ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0191886910006227" [ label="http://www.sciencedirect.com/science/article/pii/S0191886910006227", shape = ellipse, color = blue ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/08964289.2013.818932" [ label="http://www.tandfonline.com/doi/abs/10.1080/08964289.2013.818932", shape = ellipse, color = blue ];
"Rhttp://www.tandfonline.com/doi/abs/10.1080/02699931.2015.1049124" [ label="http://www.tandfonline.com/doi/abs/10.1080/02699931.2015.1049124", shape = ellipse, color = blue ];
"Rhttp://www.jstor.org/stable/10.5406/amerjpsyc.125.4.0409#pdf_only_tab_quotes" [ label="http://www.jstor.org/stable/10.5406/amerjpsyc.125.4.0409#pdf_only_tab_quotes", shape = ellipse, color = blue ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/" [ label="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4178379/", shape = ellipse, color = blue ];
"Rhttp://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short" [ label="http://iwc.oxfordjournals.org/quote/early/2015/08/02/iwc.iwv028.short", shape = ellipse, color = blue ];
"Rhttps://www.duo.uio.no/handle/10852/35161" [ label="https://www.duo.uio.no/handle/10852/35161", shape = ellipse, color = blue ];
"Rhttp://academicworks.cuny.edu/cgi/viewquote.cgi?article=1387&context=gc_etds" [ label="http://academicworks.cuny.edu/cgi/viewquote.cgi?article=1387&context=gc_etds", shape = ellipse, color = blue ];
"Rhttp://www.theses.fr/2013PA05H121" [ label="http://www.theses.fr/2013PA05H121", shape = ellipse, color = blue ];
"Rhttp://dl.acm.org/citation.cfm?id=2399037" [ label="http://dl.acm.org/citation.cfm?id=2399037", shape = ellipse, color = blue ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145" [ label="http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2033145", shape = ellipse, color = blue ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.258.6574&rep=rep1&type=pdf" [ label="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.258.6574&rep=rep1&type=pdf", shape = ellipse, color = blue ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-36285-9_47" [ label="http://link.springer.com/chapter/10.1007/978-3-642-36285-9_47", shape = ellipse, color = blue ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1" [ label="http://link.springer.com/chapter/10.1007/978-3-662-43820-6_13#page-1", shape = ellipse, color = blue ];
"Rhttp://www.researchgate.net/profile/Karl_Werder/publication/272360138_Exploring_Principles_of_User-Centered_Agile_Software_Development_A_Literature_Review/links/55003b0f0cf260c99e8f892d.pdf" [ label="http://www.researchgate.net/profile/Karl_Werder/publication/272360138_Exploring_Principles_of_User-Centered_Agile_Software_Development_A_Literature_Review/links/55003b0f0cf260c99e8f892d.pdf", shape = ellipse, color = blue ];
"Rhttp://www.pacis-net.org/file/2012/PACIS2012-155.pdf" [ label="http://www.pacis-net.org/file/2012/PACIS2012-155.pdf", shape = ellipse, color = blue ];
"Rhttp://dspace.cc.tut.fi/dpub/handle/123456789/21376" [ label="http://dspace.cc.tut.fi/dpub/handle/123456789/21376", shape = ellipse, color = blue ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-07443-6_20#page-1" [ label="http://link.springer.com/chapter/10.1007/978-3-319-07443-6_20#page-1", shape = ellipse, color = blue ];
"Rhttp://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.403.846&rep=rep1&type=pdf" [ label="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.403.846&rep=rep1&type=pdf", shape = ellipse, color = blue ];
"Rhttps://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FcdkuD&sig=dSvmblWprVAr7Bii7Wfyrh0qRYM#v=onepage&q&f=false" [ label="https://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FcdkuD&sig=dSvmblWprVAr7Bii7Wfyrh0qRYM#v=onepage&q&f=false", shape = ellipse, color = blue ];
"Rhttp://www.qucosa.de/recherche/frontdoor/cache.off?tx_slubopus4frontend[id]=urn%3Anbn%3Ade%3Absz%3A15-qucosa-157932" [ label="http://www.qucosa.de/recherche/frontdoor/cache.off?tx_slubopus4frontend[id]=urn%3Anbn%3Ade%3Absz%3A15-qucosa-157932", shape = ellipse, color = blue ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-07983-7_11#page-1" [ label="http://link.springer.com/chapter/10.1007/978-3-319-07983-7_11#page-1", shape = ellipse, color = blue ];
"Rhttp://www.aaai.org/ocs/index.php/WS/AAAIW14/paper/view/8722" [ label="http://www.aaai.org/ocs/index.php/WS/AAAIW14/paper/view/8722", shape = ellipse, color = blue ];
"Rhttp://dl.acm.org/citation.cfm?id=2556202" [ label="http://dl.acm.org/citation.cfm?id=2556202", shape = ellipse, color = blue ];
"Rhttp://dl.acm.org/citation.cfm?id=2741139" [ label="http://dl.acm.org/citation.cfm?id=2741139", shape = ellipse, color = blue ];
"Rhttp://www.akbc.ws/2014/submissions/akbc2014_submission_28.pdf" [ label="http://www.akbc.ws/2014/submissions/akbc2014_submission_28.pdf", shape = ellipse, color = blue ];
"Rhttp://www.igi-global.com/article/improving-the-quality-of-linked-data-using-statistical-distributions/116452" [ label="http://www.igi-global.com/article/improving-the-quality-of-linked-data-using-statistical-distributions/116452", shape = ellipse, color = blue ];
"Rhttp://ceur-ws.org/Vol-1162/WoDOOM14-proceedings.pdf#page=33" [ label="http://ceur-ws.org/Vol-1162/WoDOOM14-proceedings.pdf#page=33", shape = ellipse, color = blue ];
"Rhttps://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FdcoyF&sig=6V93jKGmnVtAIMz_-ppAdGARS70#v=onepage&q&f=false" [ label="https://books.google.de/books?hl=de&lr=&id=e93YBAAAQBAJ&oi=fnd&pg=PA111&ots=PnV5FdcoyF&sig=6V93jKGmnVtAIMz_-ppAdGARS70#v=onepage&q&f=false", shape = ellipse, color = blue ];
"Rhttp://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf" [ label="http://wwwusers.di.uniroma1.it/~dellibovi/pubs/EMNLP15.pdf", shape = ellipse, color = blue ];
"Rhttps://tacl2013.cs.columbia.edu/ojs/index.php/tacl/article/view/660" [ label="https://tacl2013.cs.columbia.edu/ojs/index.php/tacl/article/view/660", shape = ellipse, color = blue ];
"Rhttp://www.semantic-web-journal.net/system/files/swj1083.pdf" [ label="http://www.semantic-web-journal.net/system/files/swj1083.pdf", shape = ellipse, color = blue ];
"Rfile:///home/kb/build/madata-evaluation/www.mtg.upf.es/system/files/publications/CIM14_MAIN.pdf" [ label="file:///home/kb/build/madata-evaluation/www.mtg.upf.es/system/files/publications/CIM14_MAIN.pdf", shape = ellipse, color = blue ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4100576/" [ label="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4100576/", shape = ellipse, color = blue ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0887618514000292" [ label="http://www.sciencedirect.com/science/article/pii/S0887618514000292", shape = ellipse, color = blue ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4220662/" [ label="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4220662/", shape = ellipse, color = blue ];
"Rhttp://papers.ssrn.com/sol3/papers.cfm?abstract_id=2546159" [ label="http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2546159", shape = ellipse, color = blue ];
"Rhttp://www.sciencedirect.com/science/article/pii/S0005796715300267" [ label="http://www.sciencedirect.com/science/article/pii/S0005796715300267", shape = ellipse, color = blue ];
"Rfile:///home/kb/build/madata-evaluation/ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=7302488" [ label="file:///home/kb/build/madata-evaluation/ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=7302488", shape = ellipse, color = blue ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-22698-9_3" [ label="http://link.springer.com/chapter/10.1007/978-3-319-22698-9_3", shape = ellipse, color = blue ];
"Rhttps://books.google.de/books?hl=de&lr=&id=lEquCgAAQBAJ&oi=fnd&pg=PA233&ots=8UJy5d6tdR&sig=gdvKgVW7-OB_fBialpAfcXmdpxE#v=onepage&q&f=false" [ label="https://books.google.de/books?hl=de&lr=&id=lEquCgAAQBAJ&oi=fnd&pg=PA233&ots=8UJy5d6tdR&sig=gdvKgVW7-OB_fBialpAfcXmdpxE#v=onepage&q&f=false", shape = ellipse, color = blue ];
"Rhttp://www.researchandinnovationbook.com/PROCEEDINGS/CITA2015/Archives/papers/paper28.pdf" [ label="http://www.researchandinnovationbook.com/PROCEEDINGS/CITA2015/Archives/papers/paper28.pdf", shape = ellipse, color = blue ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-642-39137-8_21" [ label="http://link.springer.com/chapter/10.1007/978-3-642-39137-8_21", shape = ellipse, color = blue ];
"Rhttp://dl.acm.org/citation.cfm?id=2775462" [ label="http://dl.acm.org/citation.cfm?id=2775462", shape = ellipse, color = blue ];
"Rfile:///home/kb/build/madata-evaluation/link.springer.com/chapter/10.1007/978-3-642-39137-8_27" [ label="file:///home/kb/build/madata-evaluation/link.springer.com/chapter/10.1007/978-3-642-39137-8_27", shape = ellipse, color = blue ];
"Rhttp://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6759189&tag=1" [ label="http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6759189&tag=1", shape = ellipse, color = blue ];
"Rhttp://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=6759181" [ label="http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=6759181", shape = ellipse, color = blue ];
"Rhttp://aisel.aisnet.org/icis2014/proceedings/ProjectManagement/17/" [ label="http://aisel.aisnet.org/icis2014/proceedings/ProjectManagement/17/", shape = ellipse, color = blue ];
"Rhttp://www.diva-portal.org/smash/record.jsf?pid=diva2%3A830730&dswid=4164" [ label="http://www.diva-portal.org/smash/record.jsf?pid=diva2%3A830730&dswid=4164", shape = ellipse, color = blue ];
"Rhttp://www.ncbi.nlm.nih.gov/pmc/articles/PMC4248815/" [ label="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4248815/", shape = ellipse, color = blue ];
"Rfile:///home/kb/build/madata-evaluation/ref09" [ label="file:///home/kb/build/madata-evaluation/ref09", shape = ellipse, color = blue ];
"Rhttp://link.springer.com/chapter/10.1007/978-3-319-18714-3_32" [ label="http://link.springer.com/chapter/10.1007/978-3-319-18714-3_32", shape = ellipse, color = blue ];
"Rhttps://cora.ucc.ie/handle/10468/1814" [ label="https://cora.ucc.ie/handle/10468/1814", shape = ellipse, color = blue ];
"Rhttp://dx.doi.org/10.1108/MRR-04-2013-0085" [ label="http://dx.doi.org/10.1108/MRR-04-2013-0085", shape = ellipse, color = blue ];
"Rhttp://link.springer.com/article/10.1007/s10916-013-9984-x" [ label="http://link.springer.com/article/10.1007/s10916-013-9984-x", shape = ellipse, color = blue ];
"Rhttps://domino.fov.uni-mb.si/proceedings.nsf/Proceedings/08209464067DDF2AC1257E5B0048279B/$File/1_Alic.pdf" [ label="https://domino.fov.uni-mb.si/proceedings.nsf/Proceedings/08209464067DDF2AC1257E5B0048279B/$File/1_Alic.pdf", shape = ellipse, color = blue ];
"Rhttp://web.eris.uni-mannheim.de/website_supplements/theses/attachments%5C326%5CThesis%20proposal%20final.pdf" [ label="http://web.eris.uni-mannheim.de/website_supplements/theses/attachments%5C326%5CThesis%20proposal%20final.pdf", shape = ellipse, color = blue ];
// Anonymous nodes
// Literals
"Lhttp://madata/rdf/HängerC" [ label="http://madata/rdf/HängerC", shape = record ];
"Lhttp://madata/rdf/KrätzschC" [ label="http://madata/rdf/KrätzschC", shape = record ];
"Lhttp://madata/rdf/NiemannC" [ label="http://madata/rdf/NiemannC", shape = record ];
"LAnalyse der Tag-Struktur in Bibsonomy" [ label="Analyse der Tag-Struktur in Bibsonomy", shape = record ];
"Lhttp://madata/rdf/AdolphD" [ label="http://madata/rdf/AdolphD", shape = record ];
"Lhttp://madata/rdf/AlpersG" [ label="http://madata/rdf/AlpersG", shape = record ];
"LData from the paper: Valence and Arosual: A comparison of two sets of Emotional Facial Expressions" [ label="Data from the paper: Valence and Arosual: A comparison of two sets of Emotional Facial Expressions", shape = record ];
"Lhttp://madata/rdf/GassO" [ label="http://madata/rdf/GassO", shape = record ];
"LExploratory Interview Study with Financial Agents" [ label="Exploratory Interview Study with Financial Agents", shape = record ];
"Lhttp://madata/rdf/KaiserJ" [ label="http://madata/rdf/KaiserJ", shape = record ];
"Lhttp://madata/rdf/KleinA" [ label="http://madata/rdf/KleinA", shape = record ];
"LE-Book-Umfrage an der UB Mannheim 2010 - Fragebogen und Ergebnisdatensatz" [ label="E-Book-Umfrage an der UB Mannheim 2010 - Fragebogen und Ergebnisdatensatz", shape = record ];
"Lhttp://madata/rdf/MethH" [ label="http://madata/rdf/MethH", shape = record ];
"Lhttp://madata/rdf/KahrauF" [ label="http://madata/rdf/KahrauF", shape = record ];
"LCross-Functional Integration of Product Management and Product Design in Application Software Development: Exploration of Success Factors - Interview Transcripts\n " [ label="Cross-Functional Integration of Product Management and Product Design in Application Software Development: Exploration of Success Factors - Interview Transcripts\n ", shape = record ];
"Lhttp://madata/rdf/BotzenhardtA" [ label="http://madata/rdf/BotzenhardtA", shape = record ];
"LCross-Functional Integration of Product Management and Product Design in Application Software Development: Exploration of Success Factors - Survey Data" [ label="Cross-Functional Integration of Product Management and Product Design in Application Software Development: Exploration of Success Factors - Survey Data", shape = record ];
"Lhttp://madata/rdf/DuttaA" [ label="http://madata/rdf/DuttaA", shape = record ];
"Lhttp://madata/rdf/MeilickeC" [ label="http://madata/rdf/MeilickeC", shape = record ];
"Lhttp://madata/rdf/NiepertM" [ label="http://madata/rdf/NiepertM", shape = record ];
"Lhttp://madata/rdf/PonzettoS" [ label="http://madata/rdf/PonzettoS", shape = record ];
"LIntegrating Open and Closed Information Extraction: Challenges and First Steps" [ label="Integrating Open and Closed Information Extraction: Challenges and First Steps", shape = record ];
"LBusiness Data Manager Experimental Evaluation" [ label="Business Data Manager Experimental Evaluation", shape = record ];
"Lhttp://madata/rdf/SchummI" [ label="http://madata/rdf/SchummI", shape = record ];
"Lhttp://madata/rdf/RitzeD" [ label="http://madata/rdf/RitzeD", shape = record ];
"Lhttp://madata/rdf/PaulheimH" [ label="http://madata/rdf/PaulheimH", shape = record ];
"Lhttp://madata/rdf/EckertK" [ label="http://madata/rdf/EckertK", shape = record ];
"LEvaluation measures for ontology matchers in supervised matching scenarios" [ label="Evaluation measures for ontology matchers in supervised matching scenarios", shape = record ];
"Lhttp://madata/rdf/HadaschF" [ label="http://madata/rdf/HadaschF", shape = record ];
"LField Experiment Data" [ label="Field Experiment Data", shape = record ];
"LLab Experiment Data" [ label="Lab Experiment Data", shape = record ];
"LSurvey-Based Experiment Data" [ label="Survey-Based Experiment Data", shape = record ];
"Lhttp://madata/rdf/PittigA" [ label="http://madata/rdf/PittigA", shape = record ];
"Lhttp://madata/rdf/SchulzA" [ label="http://madata/rdf/SchulzA", shape = record ];
"Lhttp://madata/rdf/CraskeM" [ label="http://madata/rdf/CraskeM", shape = record ];
"LData from the paper: Acquisition of behavioral avoidance: Task-irrelevant conditioned stimuli trigger costly decisions" [ label="Data from the paper: Acquisition of behavioral avoidance: Task-irrelevant conditioned stimuli trigger costly decisions", shape = record ];
"Lhttp://madata/rdf/PawlikowskiM" [ label="http://madata/rdf/PawlikowskiM", shape = record ];
"LData from the paper: Avoidant decision making in social anxiety: the interaction of angry faces and emotional responses" [ label="Data from the paper: Avoidant decision making in social anxiety: the interaction of angry faces and emotional responses", shape = record ];
"Lhttp://madata/rdf/SchachtS" [ label="http://madata/rdf/SchachtS", shape = record ];
"LEx Post Evaluation of Project KMS" [ label="Ex Post Evaluation of Project KMS", shape = record ];
"LExploratory Interview Study for Project Knowledge Reuse" [ label="Exploratory Interview Study for Project Knowledge Reuse", shape = record ];
"LPre-Evaluation Results of Project KMS Artifact" [ label="Pre-Evaluation Results of Project KMS Artifact", shape = record ];
"Lhttp://madata/rdf/TrenzM" [ label="http://madata/rdf/TrenzM", shape = record ];
"LMultichannel commerce: A consumer perspective on the integration of physical and electronic channels " [ label="Multichannel commerce: A consumer perspective on the integration of physical and electronic channels ", shape = record ];
"Lhttp://madata/rdf/WeilandL" [ label="http://madata/rdf/WeilandL", shape = record ];
"Lhttp://madata/rdf/EffelsbergW" [ label="http://madata/rdf/EffelsbergW", shape = record ];
"LData from the paper: Weakly supervised construction of a repository of iconic images" [ label="Data from the paper: Weakly supervised construction of a repository of iconic images", shape = record ];
"Lhttp://madata/rdf/BrhelM" [ label="http://madata/rdf/BrhelM", shape = record ];
"LExploring Principles of User-Centered Agile Software Development: A Literature Review" [ label="Exploring Principles of User-Centered Agile Software Development: A Literature Review", shape = record ];
"LDetecting Meaningful Compounds in Complex Class Labels (Experimental Results)" [ label="Detecting Meaningful Compounds in Complex Class Labels (Experimental Results)", shape = record ];
"Lhttp://madata/rdf/LiY" [ label="http://madata/rdf/LiY", shape = record ];
"LEffects of Cultural Intelligence in Cross-Cultural Virtual Collaboration - Experimental data" [ label="Effects of Cultural Intelligence in Cross-Cultural Virtual Collaboration - Experimental data", shape = record ];
"LEffects of process ambidexterity on coordination and outcomes in software project teams - surevy data" [ label="Effects of process ambidexterity on coordination and outcomes in software project teams - surevy data", shape = record ];
"LFormulating Effective Coordination Strategies in Agile Global Software Development Teams - Interview transcripts" [ label="Formulating Effective Coordination Strategies in Agile Global Software Development Teams - Interview transcripts", shape = record ];
"Lhttp://madata/rdf/StuckenschmidtH" [ label="http://madata/rdf/StuckenschmidtH", shape = record ];
"LA Gold Standard of Meaningful Compounds in Complex Class Labels" [ label="A Gold Standard of Meaningful Compounds in Complex Class Labels", shape = record ];
"Lhttp://madata/rdf/BrandM" [ label="http://madata/rdf/BrandM", shape = record ];
"LData from the paper: The cost of fear: Avoidant decision making in a spider gambling task" [ label="Data from the paper: The cost of fear: Avoidant decision making in a spider gambling task", shape = record ];
"LForm and function - designing successful mobile data services - Survey Data " [ label="Form and function - designing successful mobile data services - Survey Data ", shape = record ];
"Lhttp://madata/rdf/MoranaS" [ label="http://madata/rdf/MoranaS", shape = record ];
"LExperiment Data Set - Design Cycle Two" [ label="Experiment Data Set - Design Cycle Two", shape = record ];
"LInterviews and Workshops - Design Cycle One" [ label="Interviews and Workshops - Design Cycle One", shape = record ];
"LInterviews and Workshop - Design Cycle Three" [ label="Interviews and Workshop - Design Cycle Three", shape = record ];
"LSurvey Data Set - Design Cycle Three" [ label="Survey Data Set - Design Cycle Three", shape = record ];
"LTicketing Processes - Design Cycle Three" [ label="Ticketing Processes - Design Cycle Three", shape = record ];
"Lhttp://madata/rdf/GraupnerE" [ label="http://madata/rdf/GraupnerE", shape = record ];
"LSupplements to the paper: Understanding Digitization across Processes and their Phases – An Extension of Process Virtualization Theory" [ label="Supplements to the paper: Understanding Digitization across Processes and their Phases – An Extension of Process Virtualization Theory", shape = record ];
"Lthe paper: Process Digitization in Retail Banking – An Empirical Examination of Process Virtualization Theory" [ label="the paper: Process Digitization in Retail Banking – An Empirical Examination of Process Virtualization Theory", shape = record ];
"LReverb Instance and Relation gold standard" [ label="Reverb Instance and Relation gold standard", shape = record ];
"LSupplements to the paper: Customers' Intention to Use Digital Services in Retail Banking – An Information Processing Perspective" [ label="Supplements to the paper: Customers' Intention to Use Digital Services in Retail Banking – An Information Processing Perspective", shape = record ];
"Lhttp://madata/rdf/BernerM" [ label="http://madata/rdf/BernerM", shape = record ];
"LSystematic Literature Review “Enterprise Systems Chartering” –Review Procedure and Analysis Results" [ label="Systematic Literature Review “Enterprise Systems Chartering” –Review Procedure and Analysis Results", shape = record ];
"Lhttp://madata/rdf/LauterbachJ" [ label="http://madata/rdf/LauterbachJ", shape = record ];
"LUnderstanding the Impact of Social and Ambidextrous Knowing-in-practice on the Effective Use of Enterprise Systems" [ label="Understanding the Impact of Social and Ambidextrous Knowing-in-practice on the Effective Use of Enterprise Systems", shape = record ];
"LInterview Data for the following study: Hadasch, F., Mueller, B., and Maedche, A. (2012). Exploring antecedent environmental and organizational factors to user-caused information leaks: A qualitative study. Proceedings of the 20th European Conference on Information Systems." [ label="Interview Data for the following study: Hadasch, F., Mueller, B., and Maedche, A. (2012). Exploring antecedent environmental and organizational factors to user-caused information leaks: A qualitative study. Proceedings of the 20th European Conference on Information Systems.", shape = record ];
"LSupplements to the paper: Visibility of Business Processes - An Information Processing Perspective in the Financial Services Industry" [ label="Supplements to the paper: Visibility of Business Processes - An Information Processing Perspective in the Financial Services Industry", shape = record ];
"LInterpretive case study on ES Transformation - Interview Data" [ label="Interpretive case study on ES Transformation - Interview Data", shape = record ];
"Lhttp://madata/rdf/BurgerA" [ label="http://madata/rdf/BurgerA", shape = record ];
"LAffect and the weight of idealistic and pragmatic concerns in decision situations" [ label="Affect and the weight of idealistic and pragmatic concerns in decision situations", shape = record ];
"LTagging and Automation - Challenges and Chances for Academic Libraries" [ label="Tagging and Automation - Challenges and Chances for Academic Libraries", shape = record ];
"LGood tags or bad tags? Tagging im Kontext der bibliothekarischen Sacherschließung" [ label="Good tags or bad tags? Tagging im Kontext der bibliothekarischen Sacherschließung", shape = record ];
"LValence and Arousal: A Comparison of Two Sets of Emotional Facial Expressions" [ label="Valence and Arousal: A Comparison of Two Sets of Emotional Facial Expressions", shape = record ];
"LDie E-Book-Umfrage an der UB Mannheim – Zusammenfassung der Ergebnisse" [ label="Die E-Book-Umfrage an der UB Mannheim – Zusammenfassung der Ergebnisse", shape = record ];
"Lhttp://madata/rdf/MaedcheA" [ label="http://madata/rdf/MaedcheA", shape = record ];
"LCross-Functional Integration of Product Management and Product Design in Application Software Development: Exploration of Success Factors" [ label="Cross-Functional Integration of Product Management and Product Design in Application Software Development: Exploration of Success Factors", shape = record ];
"LIntegration of Large Scale Knowledge Bases using Probabilistic Graphical Models" [ label="Integration of Large Scale Knowledge Bases using Probabilistic Graphical Models", shape = record ];
"LA Probabilistic Approach for Integrating Heterogeneous Knowledge Sources" [ label="A Probabilistic Approach for Integrating Heterogeneous Knowledge Sources", shape = record ];
"Lhttp://madata/rdf/SchuhmacherM" [ label="http://madata/rdf/SchuhmacherM", shape = record ];
"LEntity Linking for Open Information Extraction" [ label="Entity Linking for Open Information Extraction", shape = record ];
"L" [ label="", shape = record ];
"Lhttp://madata/rdf/KnudsenP" [ label="http://madata/rdf/KnudsenP", shape = record ];
"Lhttp://madata/rdf/LeichertG" [ label="http://madata/rdf/LeichertG", shape = record ];
"LInfluencing Information Technology Users’ Rule Compliance : Multiple Studies in the Security and Business Process Context" [ label="Influencing Information Technology Users’ Rule Compliance : Multiple Studies in the Security and Business Process Context", shape = record ];
"LAcquisition of behavioral avoidance: task-irrelevant conditioned stimuli trigger costly decisions" [ label="Acquisition of behavioral avoidance: task-irrelevant conditioned stimuli trigger costly decisions", shape = record ];
"LAvoidant decision making in social anxiety: The interaction of angry faces and emotional responses" [ label="Avoidant decision making in social anxiety: The interaction of angry faces and emotional responses", shape = record ];
"LWeakly supervised construction of a repository of iconic images" [ label="Weakly supervised construction of a repository of iconic images", shape = record ];
"Lhttp://madata/rdf/WerderK" [ label="http://madata/rdf/WerderK", shape = record ];
"LExploring principles of user-centered agile software development: A literature review" [ label="Exploring principles of user-centered agile software development: A literature review", shape = record ];
"Lhttp://madata/rdf/SkulasonA" [ label="http://madata/rdf/SkulasonA", shape = record ];
"LUncovering the Effects of Cultural Intelligence on Cross-Cultural Virtual Collaboration Processes" [ label="Uncovering the Effects of Cultural Intelligence on Cross-Cultural Virtual Collaboration Processes", shape = record ];
"Lhttp://madata/rdf/LiH" [ label="http://madata/rdf/LiH", shape = record ];
"Lhttp://madata/rdf/RauP" [ label="http://madata/rdf/RauP", shape = record ];
"L\"Are You a Trustworthy Partner in a Cross-cultural Virtual Environment?\" – Behavioral Cultural Intelligence and Receptivity-based Trust in Virtual Collaboration" [ label="\"Are You a Trustworthy Partner in a Cross-cultural Virtual Environment?\" – Behavioral Cultural Intelligence and Receptivity-based Trust in Virtual Collaboration", shape = record ];
"LFormulating Effective Coordination Strategies in Agile Global Software Development Teams" [ label="Formulating Effective Coordination Strategies in Agile Global Software Development Teams", shape = record ];
"LThe cost of fear: Avoidant decision making in a spider gambling task" [ label="The cost of fear: Avoidant decision making in a spider gambling task", shape = record ];
"Lhttp://madata/rdf/ScherpA" [ label="http://madata/rdf/ScherpA", shape = record ];
"LDesigning a Process Guidance System to Support User’s Business Process Compliance" [ label="Designing a Process Guidance System to Support User’s Business Process Compliance", shape = record ];
"Lhttp://madata/rdf/MelcherF" [ label="http://madata/rdf/MelcherF", shape = record ];
"Lhttp://madata/rdf/DemersD" [ label="http://madata/rdf/DemersD", shape = record ];
"Lhttp://madata/rdf/MuellerB" [ label="http://madata/rdf/MuellerB", shape = record ];
"LExploring Antecedent Environmental and Organizational Factors to User-Caused Information Leaks: a Qualitative Study" [ label="Exploring Antecedent Environmental and Organizational Factors to User-Caused Information Leaks: a Qualitative Study", shape = record ];
"Lhttp://madata/rdf/SchewerC" [ label="http://madata/rdf/SchewerC", shape = record ];
"LVisibility of Business Processes - An Information Processing Perspective in the Financial Services Industry" [ label="Visibility of Business Processes - An Information Processing Perspective in the Financial Services Industry", shape = record ];
"Lhttp://madata/rdf/GerolimosM" [ label="http://madata/rdf/GerolimosM", shape = record ];
"LTagging for libraries: A review of the effectiveness of tagging systems for library catalogs" [ label="Tagging for libraries: A review of the effectiveness of tagging systems for library catalogs", shape = record ];
"L基于概念格的 Folksonomy 知识组织研究——TagCloud 的层级体系构建" [ label="基于概念格的 Folksonomy 知识组织研究——TagCloud 的层级体系构建", shape = record ];
"L国外图书馆管理研究述评" [ label="国外图书馆管理研究述评", shape = record ];
"Lhttp://madata/rdf/ChenS" [ label="http://madata/rdf/ChenS", shape = record ];
"LUser tagging for digital archives: the case of commercial keywords from the grand secretariat" [ label="User tagging for digital archives: the case of commercial keywords from the grand secretariat", shape = record ];
"L基于标签与群组的学术博客在开放存取平台中的应用研究" [ label="基于标签与群组的学术博客在开放存取平台中的应用研究", shape = record ];
"Lhttp://madata/rdf/KathuriaS" [ label="http://madata/rdf/KathuriaS", shape = record ];
"Lquote analysis of social tags on intersectionality for works on Asian women: an exploratory study of LibraryThing" [ label="quote analysis of social tags on intersectionality for works on Asian women: an exploratory study of LibraryThing", shape = record ];
"Lhttp://madata/rdf/ZaveriP" [ label="http://madata/rdf/ZaveriP", shape = record ];
"Lhttp://madata/rdf/AtkekarM" [ label="http://madata/rdf/AtkekarM", shape = record ];
"LCollaborative Tagging in Digital Libraries" [ label="Collaborative Tagging in Digital Libraries", shape = record ];
"Lhttp://madata/rdf/AjiferukeI" [ label="http://madata/rdf/AjiferukeI", shape = record ];
"Lhttp://madata/rdf/GoodfellowJ" [ label="http://madata/rdf/GoodfellowJ", shape = record ];
"LEvaluation of the Effectiveness of Tag as an Access Point in a Public Library OPAC" [ label="Evaluation of the Effectiveness of Tag as an Access Point in a Public Library OPAC", shape = record ];
"LTagging for Libraries: A Review of the Ef-fectiveness of Tagging Systems for Library Catalogs" [ label="Tagging for Libraries: A Review of the Ef-fectiveness of Tagging Systems for Library Catalogs", shape = record ];
"Lhttp://madata/rdf/LewandowskiD" [ label="http://madata/rdf/LewandowskiD", shape = record ];
"LThe retrieval effectiveness of web search engines: considering results descriptions" [ label="The retrieval effectiveness of web search engines: considering results descriptions", shape = record ];
"Lhttp://madata/rdf/FurtadoC" [ label="http://madata/rdf/FurtadoC", shape = record ];
"LEducação e bibliotecas digitais Education and digital libraries" [ label="Educação e bibliotecas digitais Education and digital libraries", shape = record ];
"Lhttp://madata/rdf/PetersI" [ label="http://madata/rdf/PetersI", shape = record ];
"LFolksonomies: Nutzergerechte Schlagwörter als Indexierungswerkzeug für die Massen" [ label="Folksonomies: Nutzergerechte Schlagwörter als Indexierungswerkzeug für die Massen", shape = record ];
"Lhttp://madata/rdf/EbeidN" [ label="http://madata/rdf/EbeidN", shape = record ];
"LKataloganreicherung/user-created quote-oder: Wieso funktioniert mein OPAC nicht wie Amazon?" [ label="Kataloganreicherung/user-created quote-oder: Wieso funktioniert mein OPAC nicht wie Amazon?", shape = record ];
"Lhttp://madata/rdf/HohmannG" [ label="http://madata/rdf/HohmannG", shape = record ];
"LSocial Tagging: Inhaltliche Erschließung durch freie Verschlagwortung und die „Klugheit der Masse“" [ label="Social Tagging: Inhaltliche Erschließung durch freie Verschlagwortung und die „Klugheit der Masse“", shape = record ];
"Lhttp://madata/rdf/KroissA" [ label="http://madata/rdf/KroissA", shape = record ];
"LComputerunterstützte Tagging-Verfahren für Dokumente im Web" [ label="Computerunterstützte Tagging-Verfahren für Dokumente im Web", shape = record ];
"Lhttp://madata/rdf/EisenbarthH" [ label="http://madata/rdf/EisenbarthH", shape = record ];
"LHappy mouth and sad eyes: scanning emotional facial expressions." [ label="Happy mouth and sad eyes: scanning emotional facial expressions.", shape = record ];
"Lhttp://madata/rdf/WangelinB" [ label="http://madata/rdf/WangelinB", shape = record ];
"Lhttp://madata/rdf/BradleyM" [ label="http://madata/rdf/BradleyM", shape = record ];
"Lhttp://madata/rdf/KastnerA" [ label="http://madata/rdf/KastnerA", shape = record ];
"Lhttp://madata/rdf/LangP" [ label="http://madata/rdf/LangP", shape = record ];
"LAffective engagement for facial expressions and emotional scenes: the influence of social anxiety" [ label="Affective engagement for facial expressions and emotional scenes: the influence of social anxiety", shape = record ];
"Lhttp://madata/rdf/Meyer-MarcottyP" [ label="http://madata/rdf/Meyer-MarcottyP", shape = record ];
"Lhttp://madata/rdf/GerdesA" [ label="http://madata/rdf/GerdesA", shape = record ];
"Lhttp://madata/rdf/StellzigE" [ label="http://madata/rdf/StellzigE", shape = record ];
"LVisual face perception of adults with unilateral cleft lip and palate in comparison to controls-an eye-tracking study" [ label="Visual face perception of adults with unilateral cleft lip and palate in comparison to controls-an eye-tracking study", shape = record ];
"Lhttp://madata/rdf/SmithE" [ label="http://madata/rdf/SmithE", shape = record ];
"Lhttp://madata/rdf/MoranT" [ label="http://madata/rdf/MoranT", shape = record ];
"Lhttp://madata/rdf/HajcakG" [ label="http://madata/rdf/HajcakG", shape = record ];
"LElectrocortical responses to NIMSTIM facial expressions of emotion" [ label="Electrocortical responses to NIMSTIM facial expressions of emotion", shape = record ];
"Lhttp://madata/rdf/MeisterL" [ label="http://madata/rdf/MeisterL", shape = record ];
"Lhttp://madata/rdf/PauseB" [ label="http://madata/rdf/PauseB", shape = record ];
"LContext counts! social anxiety modulates the processing of fearful faces in the context of chemosensory anxiety signals" [ label="Context counts! social anxiety modulates the processing of fearful faces in the context of chemosensory anxiety signals", shape = record ];
"Lhttp://madata/rdf/AndersonN" [ label="http://madata/rdf/AndersonN", shape = record ];
"Lhttp://madata/rdf/WanL" [ label="http://madata/rdf/WanL", shape = record ];
"Lhttp://madata/rdf/YoungK" [ label="http://madata/rdf/YoungK", shape = record ];
"Lhttp://madata/rdf/StanfordM" [ label="http://madata/rdf/StanfordM", shape = record ];
"LPsychopathic traits predict startle habituation but not modulation in an emotional faces task" [ label="Psychopathic traits predict startle habituation but not modulation in an emotional faces task", shape = record ];
"Lhttp://madata/rdf/WeißS" [ label="http://madata/rdf/WeißS", shape = record ];
"Lhttp://madata/rdf/WinkelmannA" [ label="http://madata/rdf/WinkelmannA", shape = record ];
"Lhttp://madata/rdf/DuschekS" [ label="http://madata/rdf/DuschekS", shape = record ];
"LRecognition of facially expressed emotions in patients with fibromyalgia syndrome" [ label="Recognition of facially expressed emotions in patients with fibromyalgia syndrome", shape = record ];
"Lhttp://madata/rdf/CalvoM" [ label="http://madata/rdf/CalvoM", shape = record ];
"Lhttp://madata/rdf/NummenmaaL" [ label="http://madata/rdf/NummenmaaL", shape = record ];
"LPerceptual and affective mechanisms in facial expression recognition: An integrative review" [ label="Perceptual and affective mechanisms in facial expression recognition: An integrative review", shape = record ];
"Lhttp://madata/rdf/AltarribaJ" [ label="http://madata/rdf/AltarribaJ", shape = record ];
"LEmotion and Mood: Over 120 Years of Contemplation and Exploration in The American Journal of Psychology" [ label="Emotion and Mood: Over 120 Years of Contemplation and Exploration in The American Journal of Psychology", shape = record ];
"LAvoidant decision making in social anxiety: the interaction of angry faces and emotional responses" [ label="Avoidant decision making in social anxiety: the interaction of angry faces and emotional responses", shape = record ];
"Lhttp://madata/rdf/VenesvirtaH" [ label="http://madata/rdf/VenesvirtaH", shape = record ];
"Lhttp://madata/rdf/SurakkaV" [ label="http://madata/rdf/SurakkaV", shape = record ];
"Lhttp://madata/rdf/GizatdinovaY" [ label="http://madata/rdf/GizatdinovaY", shape = record ];
"Lhttp://madata/rdf/LylykangasJ" [ label="http://madata/rdf/LylykangasJ", shape = record ];
"Lhttp://madata/rdf/SpakovO" [ label="http://madata/rdf/SpakovO", shape = record ];
"Lhttp://madata/rdf/VerhoJ" [ label="http://madata/rdf/VerhoJ", shape = record ];
"Lhttp://madata/rdf/VetekA" [ label="http://madata/rdf/VetekA", shape = record ];
"Lhttp://madata/rdf/LekkalaJ" [ label="http://madata/rdf/LekkalaJ", shape = record ];
"LEmotional Reactions to Point-Light Display Animations" [ label="Emotional Reactions to Point-Light Display Animations", shape = record ];
"Lhttp://madata/rdf/KraftB" [ label="http://madata/rdf/KraftB", shape = record ];
"LInhibition and rumination in remitted major depressive disorder" [ label="Inhibition and rumination in remitted major depressive disorder", shape = record ];
"Lhttp://madata/rdf/StatuckaM" [ label="http://madata/rdf/StatuckaM", shape = record ];
"LFacial Affect Recognition and Social Functioning in Individuals at Risk for Schizophrenia Spectrum Disorders" [ label="Facial Affect Recognition and Social Functioning in Individuals at Risk for Schizophrenia Spectrum Disorders", shape = record ];
"Lhttp://madata/rdf/AiteA" [ label="http://madata/rdf/AiteA", shape = record ];
"LProcessus émotionnels et cognitifs dans le développement des capacités de prise de décision sous ambiguïté" [ label="Processus émotionnels et cognitifs dans le développement des capacités de prise de décision sous ambiguïté", shape = record ];
"Lhttp://madata/rdf/KuusinenK" [ label="http://madata/rdf/KuusinenK", shape = record ];
"Lhttp://madata/rdf/Väänänen-Vainio-MattilaK" [ label="http://madata/rdf/Väänänen-Vainio-MattilaK", shape = record ];
"LHow to make agile UX work more efficient: management and sales perspectives" [ label="How to make agile UX work more efficient: management and sales perspectives", shape = record ];
"LEnterprise Systems–A Research Agenda" [ label="Enterprise Systems–A Research Agenda", shape = record ];
"Lhttp://madata/rdf/PashaM" [ label="http://madata/rdf/PashaM", shape = record ];
"LDeveloping Business Process Management Capabilities of Undergraduate IT Students" [ label="Developing Business Process Management Capabilities of Undergraduate IT Students", shape = record ];
"Lhttp://madata/rdf/TangJ" [ label="http://madata/rdf/TangJ", shape = record ];
"Lhttp://madata/rdf/PeeL" [ label="http://madata/rdf/PeeL", shape = record ];
"Lhttp://madata/rdf/JunichiI" [ label="http://madata/rdf/JunichiI", shape = record ];
"LBusiness process orientation: an empirical study of its impact on employees' innovativeness" [ label="Business process orientation: an empirical study of its impact on employees' innovativeness", shape = record ];
"Lhttp://madata/rdf/StuckenbergS" [ label="http://madata/rdf/StuckenbergS", shape = record ];
"Lhttp://madata/rdf/KudeT" [ label="http://madata/rdf/KudeT", shape = record ];
"Lhttp://madata/rdf/HeinzlA" [ label="http://madata/rdf/HeinzlA", shape = record ];
"LUnderstanding the role of organizational integration in developing and operating Software-as-a-Service" [ label="Understanding the role of organizational integration in developing and operating Software-as-a-Service", shape = record ];
"Lhttp://madata/rdf/MaecheA" [ label="http://madata/rdf/MaecheA", shape = record ];
"LExploring The Role Of Integration In Software-As-A-Service Failure" [ label="Exploring The Role Of Integration In Software-As-A-Service Failure", shape = record ];
"Lhttp://madata/rdf/OllbergK" [ label="http://madata/rdf/OllbergK", shape = record ];
"LUser Experience as a basis for Management Decision Making Processes" [ label="User Experience as a basis for Management Decision Making Processes", shape = record ];
"LA probabilistic approach for integrating heterogeneous knowledge sources" [ label="A probabilistic approach for integrating heterogeneous knowledge sources", shape = record ];
"Lhttp://madata/rdf/HellmannS" [ label="http://madata/rdf/HellmannS", shape = record ];
"Lhttp://madata/rdf/FilipowskaA" [ label="http://madata/rdf/FilipowskaA", shape = record ];
"Lhttp://madata/rdf/BarrièreC" [ label="http://madata/rdf/BarrièreC", shape = record ];
"Lhttp://madata/rdf/MendesP" [ label="http://madata/rdf/MendesP", shape = record ];
"Lhttp://madata/rdf/KontokostasD" [ label="http://madata/rdf/KontokostasD", shape = record ];
"LNLP and DBpedia: An Upward Knowledge Acquisition Spiral" [ label="NLP and DBpedia: An Upward Knowledge Acquisition Spiral", shape = record ];
"LSemantifying triples from open information extraction systems" [ label="Semantifying triples from open information extraction systems", shape = record ];
"LIntegrating Natural Language Processing (NLP) and Language Resources Using Linked Data" [ label="Integrating Natural Language Processing (NLP) and Language Resources Using Linked Data", shape = record ];