-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.html
2564 lines (2532 loc) · 149 KB
/
cv.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Katy Börner - Curriculum Vitae</title>
<style type="text/css">
body {
background-color: #CCC;
font-family: Arial, Helvetica, Geneva, sans-serif;
font-size: 10pt;
margin:10;
padding:10;
}
h1 {
font-size:35pt;
font-family: Garamond, Georgia, Times New Roman, Times, serif;
font-weight:bold;
margin-bottom:5px;
margin-top:0pt;
}
h2 {
font-size:10pt;
line-height: 11pt;
margin-bottom: 1pt;
font-weight:bold;
}
h3 {
font-size:14pt;
margin-bottom:-5pt;
margin-top:5pt;
}
img {
border: 0px;
margin: 0px;
}
caption {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 15px;
}
img.float {
float: left;
margin-right: 10px;
margin-bottom: 5px;
}
img.floatr {
float: right;
margin-left: 10px;
margin-bottom: 5px;
}
a:link {
color: #069;
text-decoration: none;
}
a:visited {
color: #000099;
text-decoration: none;
}
a:hover {
color: #000099;
text-decoration: underline;
position: relative;
}
a:active {
color: #000099;
text-decoration: none;
}
a span {
display: none;
}
a:hover span {
display: block;
text-align: left;
font-size: 9pt;
font-weight:normal;
position: absolute;
line-height:12pt;
top: 15px;
left: -20px;
width: 500px;
padding: 10px;
margin: 0px;
z-index: 100;
border: 1px solid #990000;
color: black;
background: #f0f0f0;
}
.smallinfo {
font-size: 10pt;
}
.mediumhead {
font-size: 15pt;
}
#cv {
font-size:9pt;
font-weight:normal;
}
#container {
padding: 20px;
width: 930px;
border-style: solid;
border-width: 2px;
border-color: #f0f0f0;
}
#left {
float:left;
width:200px;
margin:0px;
padding:0px;
font-size: 9pt;
text-align: center;
}
#left a:hover span {
top: -150px;
left: 100px;
}
#right {
float:right;
width:200px;
margin: 0px;
padding:0px;
font-size: 9pt;
text-align: center;
}
#right a:hover span {
top: -150px;
left: -450px;
}
#middle {
padding-left:20px;
padding-right:20px;
margin-left: 210px;
border-left-style: solid;
border-left-width: 2px;
margin-right: 250px;
border-right-style: solid;
border-right-width: 2px;
border-color: #f0f0f0;
text-align: left;
width: 450px;
height: 3650px;
}
#righttextbox {
float:right;
width:100px;
margin: 0px;
margin-left:15px;
margin-bottom:20px;
padding:0px;
font-size: 9pt;
text-align: left;
}
hr {color: #fff; background-color: #fff; border: 1px dotted #000000; border-style: none none dotted; }
</style>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="1000" cellpadding="5" border="0" bgcolor="#FFFFFF" align="center">
<tr>
<td width="200" valign="top"></td>
<td width="600" valign="top">
<h1>Katy Börner<br /><span class="mediumhead">Curriculum Vitae</span></h1>
August 26, 2015
<hr />
<p>
<strong>Current Position</strong>
<br />
Victor H. Yngve Professor, Department of Information and Library Science, School of Informatics and
Computing, Indiana University<br />
Adjunct Professor, Department of Statistics, College of Arts and Sciences, Indiana University Founding
Director, Cyberinfrastructure for Network Science Center, Indiana University
<br />
Director, Information Visualization Laboratory, Indiana University
<br />
Core Faculty, Cognitive Science, Indiana University
<br />
Research Affiliate, Biocomplexity Institute, Indiana University <br />
Visiting Professor at the Royal Netherlands Academy of Arts and Sciences, The Netherlands<br />
<br />
<strong>Office Address and Telephone</strong>
<br />Indiana University, School of Library and Information Science<br />
10th Street & Jordan Avenue, Wells Library 021<br />
Bloomington, IN 47405, USA<br />
Phone: +1 812 855 3256, Fax: +1 812 855 6166<br />
E-mail: <a href="mailto: katy@indiana.edu">katy@indiana.edu</a><br />
WWW: <a href="http://info.ils.indiana.edu/~katy" target="_self">http://info.ils.indiana.edu/~katy</a>
</p>
<hr />
<p>
<center>
<a href="#employment"><strong>EMPLOYMENT</strong></a> |
<a href="#publications"><strong>PUBLICATIONS</strong></a> |
<a href="#invitedtalks"><strong>INVITED TALKS</strong></a> |
<a href="#grantsprojects"><strong>GRANTS & PROJECTS</strong></a
><br /><br /><a href="#teaching"><strong>TEACHING</strong></a> |
<a href="#service"><strong>SERVICE</strong></a>
</center>
<br />
</p>
<hr />
<strong>PERSONAL INFORMATION</strong>
<ul>
<li>Month and Place of Birth: October 1967 in Leipzig, Germany</li>
<li>Nationality: German & American</li>
</ul>
<p><strong>EDUCATION</strong></p>
<ul>
<li>Ph.D. in Computer Science, University of Kaiserslautern, 1997</li>
<li>Master of Engineering in Electronics, University of Technology Leipzig, 1991</li>
<li>Technical School Examinations, RFT Fernmeldewerk Leipzig, 1987</li>
</ul>
<p><strong>RESEARCH AREAS</strong></p>
<ul>
<li>Scientometrics</li>
<li>Knowledge Management</li>
<li>Information Visualization</li>
<li>Data Mining & Modeling</li>
<li>Cyberinfrastructure Design</li>
<li>Virtual Reality Interfaces</li>
<li>Human Computer Interaction</li>
<li>Cognitive Science</li>
<li>Artificial Intelligence</li>
</ul>
<p><a name="employment"></a><strong>PROFESSIONAL EMPLOYMENT</strong></p>
<ul>
<li>
Victor H. Yngve Professor,
<a href="http://www.informatics.indiana.edu/">School of Informatics and Computing</a>, July 2013 -
present.
</li>
<li>
Visiting Professor, Royal Netherlands Academy of Arts and Sciences (KNAW), Amsterdam, The Netherlands,
Jan. 2012 - present.
</li>
<li>
Visiting Scientist, Eidgenössische Technische Hochschule Zürich (ETH), Switzerland, June 2011.
</li>
<li>Visiting Professor, Reporting Branch, Office of Extramural Research, NIH, July 2010.</li>
<li>
Victor H. Yngve Professor,
<a href="http://www.slis.indiana.edu/">School of Library and Information Science</a>, Aug. 2009 - June
2013.
</li>
<li>
Adjunct Professor, Department of Statistics, College of Arts and Sciences, Indiana University, Oct. 2009 -
present.
</li>
<li>
Adjunct Professor, <a href="http://www.informatics.indiana.edu/">School of Informatics and Computing</a>,
Indiana University, Aug. 2009 - June 2013.
</li>
<li>
Victor H. Yngve Associate Professor,
<a href="http://www.slis.indiana.edu/">School of Library and Information Science</a>, Aug. 2007.
</li>
<li>
Associate Professor <a href="http://www.slis.indiana.edu/">School of Library and Information Science</a>,
Indiana University, June 2005 - July 2009.
</li>
<li>
Adjunct Associate Professor, <a href="http://www.informatics.indiana.edu/">School of Informatics</a>,
Indiana University, Aug. 2001 - July 2009.
</li>
<li>
Core <a href="http://www.cogs.indiana.edu/">Cognitive Science</a> Faculty, Indiana University,
Bloomington, Jan. 2000 - present.
</li>
<li>
Assistant Professor <a href="http://www.slis.indiana.edu/">School of Library and Information Science</a>,
Indiana University, Jan. 2000 - March 2005.
</li>
<li>
Visiting Assistant Professor, School of Library and Information Science, Indiana University, Bloomington,
Aug. - Dec 1999.
</li>
<li>
Visiting Assistant Professor, Computer Science Department, Indiana University, Bloomington, Aug.
1998 - July 1999.
</li>
<li>Research Associate and Instructor, University of Bielefeld, Faculty of Technology, 1996 - 1998.</li>
<li>
Research Assistant in the BMBF funded project FABEL, University of Freiburg, Center for Cognitive Science,
1994 - 1996.
</li>
<li>Ph.D. Studies, Boston University, Department of Computer Science, USA, Aug. / Sept. 1994</li>
<li>
Development Engineer, Horiba LTD, Automotive Instruments Development Department, Kyoto, Japan, July / Aug.
1993.
</li>
<li>Professional Services (Technical Development), Nov. 1992 - June 1998.</li>
<li>
Research Assistant in BMBF funded projects GOSLER and FABEL, University of Technology Leipzig, Department
of Mathematics and Computer Science, 1991- 1994.
</li>
<li>Practical Course, Westinghouse Controlmatic GmbH, Frankfurt a. M., Oct. - Dec. 1990.</li>
<li>Assistant Worker, University of Technology Leipzig, Department of Electronics, 1988 - 1991.</li>
<li>Skilled Worker, RFT Fernmeldewerk Leipzig, Development Department, Aug. / Sept. 1987.</li>
</ul>
<p>
<i><strong>Affiliations</strong></i>
</p>
<ul>
<li>
Commerce Data Advisory Council (<a
href="http://www.esa.doc.gov/content/commerce-data-advisory-council-cdac"
>CDAC</a
>) Member, 2015-2016.
</li>
<li>
Mercator Fellow,
<a href="https://eggnog.is.inf.uni-due.de">DFG-Graduiertenkolleg on User-Centred Social Media (UCSM)</a>,
University of Duisburg-Essen, Germany, Oct. 2015-Sept 2018.
</li>
<li>Founding Director of the Cyberinfrastructure for Network Science Center, Oct. 2005 - present.</li>
<li>
Honorary Fellow of the Virtual Knowledge Studio for the Humanities and Social Sciences at the Royal
Netherlands Academy of Arts and Sciences, Dec. 2009 - present.
</li>
<li>
Member of the Association for Computing Machinery (ACM), International Society for Scientometrics and
Infometrics (ISSI), Society for Social Studies of Science (4S), International Network for Social Network
Analysis (INSNA), American Sociological Society (ASA), American Association for the Advancement of Science
(AAAS).
</li>
<li>
Research Affiliate of the <a href="http://www.biocomplexity.indiana.edu/">Biocomplexity Institute</a>,
Indiana University, Sept. 2003 - present.
</li>
<li>
Fellow, <a href="http://www.slis.indiana.edu/CSI/">Center for Social Informatics</a>, Indiana University,
Aug. 2001 - present.
</li>
<li>Member, <a href="http://www.vlearn3d.org/">VLearn3D</a> Advisory Committee, April 2001 - present.</li>
<li>
Fellow, <a href="http://www.crlt.indiana.edu/">Center for Research on Learning and Technology</a>, Indiana
University, Jan. 2001 - present.
</li>
<li>
Faculty Member, Indiana University <a href="http://avl.iu.edu/">Advanced Visualization Laboratory</a>,
Dec. 1999 - present.
</li>
</ul>
<p>
<i><strong>Awards & Fellowships</strong></i>
</p>
<ul>
<li>American Association for the Advancement of Science (AAAS) Fellow, 2012.</li>
<li>
Atlas of Science: Visualizing What We Know (MIT) is the winner for The American Society for Information
Science & Technology (ASIS&T) best Information Science book published in 2010.
</li>
<li>Outstanding Junior Faculty Award, Indiana University, Bloomington, Nov. 2003.</li>
<li>
<a href="http://pervasivetechnologylabs.iu.edu/fellows/">Pervasive Technology Laboratories Fellowship</a>,
Indiana University, Sept. 2003 - Aug. 2004.
</li>
<li>
SBC Fellow (formerly Ameritech Fellow), <a href="http://www.sbcf.iu.edu/abstract4.html">Round 4</a>,
2003/2004.
</li>
<li>NSF CAREER Award, Sept. 2003 - Aug. 2008.</li>
<li>
Trustees Teaching Award for the School of Library and Information Science, Indiana University, 2003.
</li>
<li>
Ph.D. Fellowship <a href="http://www.studienstiftung.de/">Studienstiftung des Deutschen Volkes e.V.</a>,
Germany, 1992 - 1995.
</li>
<li>Altstipendiat <a href="http://www.kas.de/">Konrad Adenauer Stiftung e.V.</a>, Germany.</li>
</ul>
<p><a name="publications"></a><strong>PUBLICATIONS</strong></p>
<p>
<b><i>Journal Articles</i></b> <em><strong>(peer-reviewed)</strong></em>
</p>
<p>
Reijnhoudt, Linda, Rodrigo Costas, Ed Noyons, Katy Börner, and Andrea Scharnhorst. (2014). ‘Seed+Expand’: A
general methodology for detecting publication oeuvres of individual researchers. <em>Scientometrics</em>.
</p>
<p>
Light, Robert, Ted Polley, and Katy Börner. (2014). Open Data and Open Code for Big Science of Science
Study. <em>Scientometrics</em>.
</p>
<p>
Skupin, André, Joseph R. Biberstine, and Katy Börner. (2013). Visualizing the Topical Structure of the
Medical Sciences: A Self-Organizing Map Approach. <em>PLoS ONE</em>. 8<em>(3)</em>: e58779.
</p>
<p>
Chen, Yunwei, Katy Börner, and Shu Fang. (2013). Evolving Collaboration Networks in Scientometrics in
1978-2010: A Micro-Macro Analysis. <em>Scientometrics</em>. 95<em>(3)</em>: 1051-1070.
</p>
<p>
Bollen, Johan, David Crandall, Damion Junk, Ying Ding, and Katy Börner. (2013). Collective allocation of
science funding: from funding agencies to scientific agency. <em>EMBO Reports</em>. 15<em>(1)</em>: 1-121
</p>
<p>
Mazloumian, Amin, Dirk Helbing, Sergi Lozano, Robert Light, and Katy Börner. (2013). Global Multi-Level
Analysis of the 'Scientific Food Web'. <em>Nature Scientific Reports</em>. 3, 1167. DOI:10.1038/srep01167.
</p>
<p>
Harmelen, Frank van, George Kampis, Katy Börner, Peter van den Besselaar, Erik Schultes, Carol Goble, Paul
Groth, Barend Mons, Stuart Anderson, Stefan Decker, Conor Hayes, Thierry Buecheler, and Dirk Helbing.
(2012). Theoretical And Technological Building Blocks For An Innovation Accelerator.
<em>European Physical Journal</em>: Special Topics 214: 183-214.
</p>
<p>Börner, Katy. (2012). Picturing Science. <em>Nature</em> 487: 430-431.</p>
<p>
Zoss, Angela, and Katy Börner. (2012). Mapping Interactions Within the Evolving Science of Science and
Innovation Policy Community. <em>Scientometrics</em> 91<em>(2)</em>: 631-644.
</p>
<p>
<a>Börner, Katy</a>, <a>Richard Klavans</a>, Michael Patek, <a>Angela Zoss</a>, Joseph R. Biberstine, Robert
Light, Vincent Larivière, and Kevin W. Boyack. (2012).
<a>Design and Update of a Classification System: The UCSD Map of Science</a>.
<em>PLoS One</em> 7<em>(7)</em>: e39464.
</p>
<p>
Chen, Yunwei, Fang, Shu & Börner, Katy. (2011). Mapping the development of scientometrics: 2002 to 2008.
<em>Journal of Library Science in China</em> 3: 131-146.
</p>
<p>
Guo, Hanning, Scott B. Weingart, & Katy Börner (2011). Mixed-Indicators Model for Identifying
Emerging Research Areas. <em>Scientometrics</em>, 89<em>(1)</em>: 421–435.
</p>
<p>
Boyack, Kevin W., Newman, David, Duhon, Russell Jackson, Klavans, Richard, Patek, Michael, Biberstine,
Joseph R., Schijvenaars, Bob, Skupin, Andre, Ma, Nianli & Börner, Katy. (2011). Clustering More
Than Two Million Biomedical Publications: Comparing the Accuracies of Nine Text-Based Similarity Approaches.
<em>PLoS ONE</em>. 6<em>(3)</em>, 1-11.
</p>
<p>
Börner, Katy. (2011) Plug-and-Play Macroscopes. <em>Communications of the ACM</em>.<em> </em>Vol.
54<em>(3)</em>, 60-69.
</p>
<p>
Wagner, Caroline, Roessner, J. David, Bobb, Kamau, Klein, Julie Thompson, Boyack, Kevin W., Keyton, Joann,
Rafols, Ismael & Börner, Katy. (2011). Approaches to understanding and measuring interdisciplinary
scientific research (IDR): A review of the literature. <em>Journal of Informetrics</em>. Vol. 5, 14-26.
</p>
<p>
Börner, Katy, Contractor, Noshir S., Falk-Krzesinski, Holly J., Fiore, Stephen M., Hall, Kara L.,
Keyton, Joann, Spring, Bonnie, Stokols, Daniel, Trochim, William and Uzzi, Brian. (2010). A Multi-Level
Systems Perspective for the Science of Team Science. <em>Science Translational Medicine</em>. Vol.
2<em>(49)</em>, 1-5.
</p>
<p>
Falk-Krzesinski, Holly J., Börner, Katy, Contractor, Noshir S., Cummings, Jonathon, Fiore, Stephen M.,
Hall, Kara L., Keyton, Joann, Spring, Bonnie, Stokols, Daniel, Trochim, William and Uzzi, Brian. (2010, in
press). Advancing the Science of Team Science. <em>Clinical and Translational Science</em>. 3<em>(5)</em>,
263-266.
</p>
<p>
<span lang="de" xml:lang="de">Börner, Katy, Ma, Nianli, Duhon, Russell J., Zoss, Angela M. </span>
(2009) Open Data and Open Code for S&T Assessment. <em>IEEE Intelligent Systems</em>. 24(4), 78-81,
July/August.
</p>
<p>
Börner, Katy, Huang, Weixia (Bonnie), Linnemeier, Micah, Duhon, Russell Jackson, Phillips, Patrick, Ma,
Nianli, Zoss, Angela, Guo, Hanning & Price, Mark. (2010). Rete-Netzwerk-Red: Analyzing ad Visualizing
Scholarly Networks Using the Network Workbench Tool. <em>Scientometrics</em>. 83<em>(3)</em>, 863-876.
</p>
<p>
Börner, Katy and Scharnhorst, Andrea. (2009) Visual Conceptualizations and Models of Science.
<em>Journal of Informetrics</em>. 3<em>(3)</em>, 161-172.
</p>
<p>
La Rowe, Gavin, Ambre, Sumeet, Burgoon, John, Ke, Weimao and Börner, Katy. (2009) The Scholarly
Database and Its Utility for Scientometrics Research. <em>Scientometrics</em>. 79<em>(2)</em>, 219-234.
</p>
<p>
Boyack, Kevin W., Börner, Katy and Klavans, Richard. (2009) Mapping the Structure and Evolution of
Chemistry Research. <em>Scientometrics</em>. 79<em>(1)</em>, 45-60.
</p>
<p>
Barend Mons, Michael Ashburner, Christine Chichester, Erik van Mulligen, Marc Weeber, Johan den Dunnen,
Gert-Jan van Ommen, Mark Musen, Matthew Cockerill, Henning Hermjakob, Albert Mons, Abel Packer, Roberto
Pacheco, Suzanna Lewis, Alfred Berkeley, William Melton, Nickolas Barris, Jimmy Wales, Gerard Meijssen, Erik
Moeller, Peter Jan Roes, Katy Borner and Amos Bairoch. (2008)
<a href="http://genomebiology.com/2008/9/5/R89"
>Calling on a Million Minds for Community Annotation in WikiProteins</a
>. <em>Genome Biology</em>. 9:R89.
</p>
<p>
Burkhard, Remo Aslak, Andrienko, Gennady, Andrienko, Natalia, Dykes, Jason, Koutamanis, Alexander,
Kienreich, Wolfgang, Phaal, Robert, Blackwell, Alan, Eppler, Martin, Huang, Jeffrey, Meagher, Mark,
Grün, Armin, Lang, Silke, Perrin, Daniel, Weber, Wibke, Vande Moere, Andrew, Herr II, Bruce W.,
Börner, Katy, Fekete, Jean-Daniel, Brodbeck, Dominique. (2007). Visualization Summit 2007: Ten Research
Goals for 2010. <em>Information Visualisation Journal</em>. Vol. 6, 169-188.
</p>
<p>
Börner, Katy. (2007). Making Sense of Mankind's Scholarly Knowledge and Expertise: Collecting,
Interlinking, and Organizing What We Know and Different Approaches to Mapping (Network) Science.
<em>Environment and Planning B: Planning and Design</em>. 34<em>(5)</em>, 808-825.
</p>
<p>
Börner, Katy, Hardy, Elisha, Herr, Bruce W., Holloway, Todd and Paley, W. Bradford (2007) Taxonomy
Visualization in Support of the Semi-Automatic Validation and Optimization of Organizational Schemas.
<em>Journal of Informetrics</em>. 1<em>(3)</em>, 214-225.
</p>
<p>
Holloway, Todd, Božicevic, Miran and Börner, Katy. (2007) Analyzing and Visualizing the Semantic
Coverage of Wikipedia and Its Authors. <em>Complexity</em>. 12<em>(3)</em>, 30-40. Also available as
<a href="http://xxx.arxiv.org/abs/cs.IR/0512085">cs.IR/0512085</a>.
</p>
<p>
Börner, Katy, Penumarthy, Shashikant, Meiss, Mark and Ke, Weimao. (2006) Mapping the Diffusion of
Scholarly Knowledge Among Major U.S. Research Institutions. <em>Scientometrics. </em>68<em>(3)</em>,
415-426.
</p>
<p>
Janssen, Marco, Schoon, Michael, Ke, Weimao and Börner, Katy. (2006) Scholarly Networks on Resilience,
Vulnerability and Adaptation within the Human Dimensions of Global Environmental Change.
<em>Global Environmental Change</em>, Special issue on <em>Resilience, Vulnerability and Adaptation</em>.
16<em>(3)</em>, 240-252.
<a href="http://www.public.asu.edu/%7Emajansse/pubs/SupplementIHDP.htm">Supplementary Material</a>.
</p>
<p>
S. Ragg, M. B. Rosenman, E. M. Doucette, Z. Yan, J. C. Haydon, J. H. Paine, N. D. Lee, T. Vik, K. Mane and
Börner, K. (Nov. 2005) Data visualization of multiparameter information in acute lymphoblastic leukemia
expands the ability to explore prognostic factors. <em>Blood</em>. 106<em>(11)</em>, 254A-254A 862, Part 1.
</p>
<p>
Boyack, Kevin W., Klavans, Richard and Börner, Katy. (2005). Mapping the Backbone of Science.
<em>Scientometrics<i>. </i></em>64<em>(3)</em>, 351-374.
</p>
<p>
Börner, Katy, Dall’Asta, Luca, Ke, Weimao and Vespignani, Alessandro. (April 2005) Studying the
Emerging Global Brain: Analyzing and Visualizing the Impact of Co-Authorship Teams. <em>Complexity</em>.
10<em>(4)</em>, 58-67. Also available as
<a href="http://arxiv.org/abs/cond-mat/0502147">cond-mat/0502147</a>.
</p>
<p>
Ord, Terry J., Martins, Emília P., Thakur, Sidharth, Mane, Ketan K., and Börner, Katy. (2005)
Trends in animal behaviour research (1968-2002): Ethoinformatics and mining library databases.
<em>Animal Behaviour</em>. 69, 1399-1413.
<a href="http://ella.slis.indiana.edu/%7ekaty/paper/05-animalbeh-suppl/">Supplementary Material</a>.
</p>
<p>
Chen, Chaomei and Börner, Katy. (Feb. 2005). The Spatial-Semantic Impact of a Collaborative Information
Virtual Environment on Group Dynamics. <em>PRESENCE: Teleoperators and Virtual Environments. </em>Special
Issue on Collaborative Information Visualization Environments. 14<em>(1)</em>, 81-103.
<a
href="http://presence.cs.ucl.ac.uk/presenceconnect/articles/dec2004/ccourtnedec62004194339/ccourtnedec62004194339.html"
>Supplementary Material</a
>.<br />
<br />
Shiffrin, Richard M. and Börner, Katy. (2004).
<a href="../paper/04pnas-intro.pdf">Introduction: Mapping Knowledge Domains</a>.
<em>Proceedings of the National Academy of Sciences of the United States of America</em>. 101(Suppl_1),
5183–5185.
</p>
<p>
Mane, Ketan K. and Börner, Katy. (2004).
<a href="http://www.pnas.org/cgi/reprint/101/suppl_1/5287.pdf">Mapping Topics and Topic Bursts in PNAS</a>.
<em>Proceedings of the National Academy of Sciences of the United States of America</em>. 101(Suppl.
1):5287-5290. Also available as <a href="http://arxiv.org/abs/cs.IR/0402029">cs.IR/0402029</a>.
</p>
<p>
Börner, Katy, Maru, Jeegar and Goldstone, Robert. (2004).
<a href="http://www.pnas.org/cgi/reprint/101/suppl_1/5266.pdf"
>The Simultaneous Evolution of Author and Paper Networks</a
>. <em>Proceedings of the National Academy of Sciences of the United States of America</em>. 101(Suppl_1),
5266-5273. Also available as <a href="http://xxx.arxiv.org/abs/cond-mat/0311459">cond-mat/0311459</a>.
<br />
<br />
Börner, Katy and Penumarthy, Shashikant. (2003). Social Diffusion Patterns in Three-Dimensional Virtual
Worlds. <a href="http://www.palgrave-journals.com/ivs/index.html"><em>Information Visualization</em></a
>. 2<em>(3)</em>,182-198.<br />
<br />
Boyack, Kevin W. and Börner, Katy. (2003).
<a href="http://www3.interscience.wiley.com/cgi-bin/fulltext/102528057/main.html,ftx_abs"
>Indicator-Assisted Evaluation and Funding of Research: Visualizing the Influence of Grants on the Number
and Citation Counts of Research Papers</a
>, <i>Journal of the American Society of Information Science and Technology</i>, Special Topic Issue on
<a href="http://www3.interscience.wiley.com/cgi-bin/issuetoc?ID=76504585"
>Visualizing Scientific Paradigms</a
>, 54<em>(5)</em>, 447-461. <br />
<br />
Börner, Katy. (2001). Efficient case-based structure generation for design support.
<i>Artificial Intelligence Review</i>, Kluwer Academic Publishers, 16<em>(2)</em>, 87-118.<br />
<br />
Börner, Katy. (2000). VegoWelt: A smart virtual playroom.
<i>International Journal of Design Computing</i>,
<a href="http://www.ylem.org/NewSite/archive/pdf/JulyAug99.pdf">Volume 2</a>, 2000. (<a
href="http://www.arch.usyd.EDU.AU/kcdc/journal/vol2/dcnet/sub6/"
>http://www.arch.usyd.EDU.AU/kcdc/journal/vol2/dcnet/sub6/</a
>)
</p>
<p>
<b><i>Edited Journals</i></b>
</p>
<p>
Börner, Katy, Glänzel, Wolfgang, Scharnhorst, Andrea and van den Besselaar, Peter (Eds.) (2011).
<em>Scientometrics</em>. Special Issue on
<a href="http://ivl.slis.indiana.edu/km/pub/2011-borner-editorial-scientometrics.pdf"
>Modeling Science: Studying the Structure and Dynamics of Science</a
>. Springer-Verlag, 89(1).
</p>
<p>
Börner, Katy & Scharnhorst, Andrea (Eds.) (2009). <em>Journal of Informetrics</em>.
<a href="http://www.sciencedirect.com/science/journal/17511577"
>Special Issue on Science of Science: Conceptualizations and Models of Science</a
>. Elsevier, 3(3).
</p>
<p>
Skupin, André and Börner, Katy (Eds.) (2007).
<em>Environment and Planning B: Planning and Design</em>. Special Issue on Mapping Humanity's Knowledge and
Expertise in the Digital Domain, Pion, 34(5).
</p>
<p>
Börner, Katy and Mostafa, Javed (Eds.) (March 2005).
<em>International Journal on Digital Libraries</em>. Special Issue on Information Visualization Interfaces
for Retrieval and Analysis. Springer-Verlag, 5(1).
</p>
<p>
Börner, Katy and Navarro-Prieto, Raquel (Eds.) (Feb. 2005).
<em>PRESENCE: Teleoperators and Virtual Environments. </em>Special Issue on Collaborative Information
Visualization Environments. MIT Press, 14(1).
</p>
<p>
Shiffrin, Richard M. and Börner, Katy (Eds.) (April 2004). Mapping Knowledge Domains.
<em>Proceedings of the National Academy of Sciences of the United States of America</em>, 101(Suppl_1).
</p>
<p>
<b><i> Books and Book Chapters</i></b> <em><strong>(peer-reviewed)</strong></em>
</p>
<p>
Börner, Katy, and Ted Polley. (2014). Visual Insights: A Practical Guide to Making Sense of Data. Cambridge,
MA: The MIT Press.
</p>
<p>
Börner, Katy. (2014). "Plug-and-Play Macroscopes: Network Workbench (NWB), Science of Science Tool (Sci2),
and Epidemiology Tool (Epic)". In <em>Encyclopedia of Social Network Analysis and Mining</em>. Springer
Verlag.
</p>
<p>
Schreiber, Falk, Andreas Kerren, Katy Börner, Hans Hagen, and Dirk Zeckzer. (2014). Heterogeneous Networks
on Multiple Levels. In
<em>Information Visualization--Towards Multivariate Network Visualization (Dagstuhl Seminar 13201)</em>.
Springer Verlag.
</p>
<p>
Börner, Katy, and Ted Polley. (2014). Replicable Science of Science Studies. In
<em>Measuring Scholarly Impact - Methods and Practice</em>, edited by Ding, Ying, Ronald Rousseau, and
Dietmar Wolfram, Ch. 12. Springer Verlag.
</p>
<p>
Scharnhorst, Andrea, Katy Börner, and Peter van den Besselaar. (2012). Foreword. In
<em>Models of Science Dynamics: Encounters Between Complexity Theory and Information Science</em>. Springer
Verlag.
</p>
<p>
Börner, Katy. (2012). Network Science: Theory, Tools and Practice. In William Sims Bainbridge, Ed.
<em>Leadership in Science and Technology: A Reference Handbook</em>. SAGE Publications, Inc.
</p>
<p>
Milojevic, Stasa, Börner, Katy, Morris, Steven, Boyack, Kevin W. (2012). An Introduction to Modeling
Science: Basic Model Types, Key Definitions, and a General Framework for the Comparison of Process Models.
In <em>Models of Science Dynamics: Encounters Between Complexity Theory and Information Sciences</em>, Ch.
1. Springer Verlag.
</p>
<p>
Tank, Chintan, Linnemeier, Micah, Kong, Chin Hua, Börner, Katy. (2012). Analyzing and Visualizing VIVO. In
<em>VIVO: A Semantic Approach to Scholarly Networking and Discovery</em>, Ch. 7. Morgan & Claypool
Publishers LLC.
</p>
<p>
Börner, Katy. (2010).
<a href="http://scimaps.org/atlas/">Atlas of Science: Visualizing What We Know</a>. MIT Press.
</p>
<p align="left">
Börner, Katy & Kevin W. Boyack. (2010). Mapping Interdisciplinary Research. In Robert Frodeman,
Julie Thompson Klein and Carl Mitcham, Eds.<em> Oxford Handbook of Interdisciplinarity</em>, chapter 31, New
York: Oxford University Press.
</p>
<p>
Hill (Chair), Christopher, Bonvillian, William B., Börner, Katy, Feeney, Mary K., Goldston, David,
Kirkendall, Nancy J., Klein, Julie Thompson, Koizumi, Kei, Roessner, J. David, Taylor, Martha M., Plewes
(Study Director), Thomas J. & Siri (Program Associate), Michael J. (2009).
<em>Data on Federal Research and Development Investments: A Pathway to Modernization.</em>
<em>Panel on Modernizing the Infrastructure of the National Science Foundation Federal Funds Survey</em>,
The National Academies Press, Washington DC.
</p>
<p>
Herr, Bruce W., Huang, Weixia, Penumarthy, Shashikant, Börner, Katy. (2007). Designing Highly Flexible
and Usable Cyberinfrastructures for Convergence. In William S. Bainbridge and Mihail C. Roco (Eds.)
<em>Progress in Convergence--</em><em>Technologies for Human Wellbeing. </em>Annals of the New York Academy
of Sciences, Boston, MA, volume 1093, pp. 161-179.
</p>
<p>
Börner, Katy, Sanyal, Soma and Vespignani, Alessandro. (2007). Network Science. In Blaise Cronin (Ed.),
<i
><a href="http://www.infotoday.com/books/asist/arist37.shtml"
>Annual Review of Information Science & Technology</a
></i
><a href="http://www.infotoday.com/books/asist/arist37.shtml">, Volume 41</a>, Medford, NJ: Information
Today, Inc./American Society for Information Science and Technology, chapter 12, pp. 537-607.
</p>
<p>
Mahoui, Malika, Kulkarni, Harshad, Li, Nianhua, Ben-Miled, Zina and Börner, Katy. (2005).
<a
href="http://www.springerlink.com/app/home/contribution.asp?wasp=29133c160927487790957ddcc3bd7555&referrer=parent&backto=issue,12,35;journal,12,2129;linkingpublicationresults,1:105633,1"
>Semantic Correspondence in Federated Life Science Data Integration Systems</a
>. In Bertram Ludäscher & Louiqa Raschid (eds.) <em>Data Integration in the Life Sciences</em>,
Lecture Notes in Computer Science, Vol. 3615, Springer-Verlag.
</p>
<p>
Fletcher, George , Sheth, Hardik and Börner, Katy. (2005). Unstructured Peer-to-Peer Networks:
Topological Properties and Search Performance. In Gianluca Moro, Sonia Bergamaschi, Karl Aberer (eds.)
<em>Agents and Peer-to-Peer Computing: Third International Workshop</em>, AP2PC 2004, New York, NY, USA,
July 19, 2004. Springer Verlag, pp 14-27.
</p>
<p>
Hook, Peter A. and Börner, Katy. (2005). Educational Knowledge Domain Visualizations: Tools to
Navigate, Understand, and Internalize the Structure of Scholarly Knowledge and Expertise. In Amanda Spink
and Charles Cole (eds.) <em>New Directions in Cognitive Information Retrieval</em>. Springer-Verlag,
Netherlands, chapter 5, pp. 187-208.
</p>
<p>
Katy Börner. (2006). Semantic Association Networks: Using Semantic Web Technology to Improve Scholarly
Knowledge and Expertise Management. In Vladimir Geroimenko & Chaomei Chen (eds.)
<em>Visualizing the Semantic Web</em>, Springer Verlag, 2nd Edition, chapter 11, pp. 183-198.
</p>
<p>
Penumarthy, Shashikant and Börner, Katy. (2006). Analysis and Visualization of Social Diffusion
Patterns in Three-Dimensional Virtual Worlds. In Schroeder, Ralph & Axelsson, Ann-Sofie (Eds.),
<em
>Computer Supported Cooperative Work: Avatars at Work and Play: Collaboration and Interaction in Shared
Virtual Environments
</em>
Springer-Verlag, Vol. 34, chapter 3, pp. 39-61.
</p>
<p>
Börner, Katy. (2005). Several Entries for the
<em>Encyclopedia on Human Computer Interaction in Popular Culture</em>, Berkshire Publishing Group.<br />
<br />
Börner, Katy, Penumarthy, Shashikant, DeVarco, Bonnie Jean, and Kerney, Carol. (2005). Visualizing
Social Patterns in Virtual Environments on a Local and Global Scale. In Peter van den Besselaar & Satoshi
Koizumi (eds),
<em>Digital Cities III. Information Technologies for Social Capital: Cross-cultural Perspectives</em>,
Lecture Notes in Computer Science, Vol. 3081. Springer Verlag, pp. 325-340.<br />
<br />
Börner, Katy and Penumarthy, Shashikant. (2003). Maps of Virtual Worlds. In
<a href="http://www.iidj.net/IDSB_E/index.html"><i>Information Design Source Book</i></a
>. IIDj Institute for Information Design Japan (Ed.), Graphic-Sha, Japan.<br />
<br />
Börner, Katy, Chen, Chaomei, and Boyack, Kevin. (2003). Visualizing Knowledge Domains. In Blaise Cronin
(Ed.),
<i
><a href="http://www.infotoday.com/books/asist/arist37.shtml"
>Annual Review of Information Science & Technology</a
></i
><a href="http://www.infotoday.com/books/asist/arist37.shtml">, Volume 37</a>, Medford, NJ: Information
Today, Inc./American Society for Information Science and Technology, chapter 5, pp. 179-255.
</p>
<p>
Börner, Katy. (2003). Computers and Knowledge Sharing. In Christensen, Karen and Levinson, David.
<a href="http://www.berkshirepublishing.com/brw/pjdescr.asp?projID=18"
><i>Encyclopedia of Community: From the Village to the Virtual World</i></a
>, Thousand Oaks, CA: Sage, pp. 314-316.<br />
<br />
Börner, Katy and Chen, Chaomei. (2002). Visual Interfaces for Digital Libraries: Motivation,
Utilization, and Socio-Technical Challenges. In <i>Visual Interfaces to Digital Libraries</i>.
Börner, K. and Chen, C. (Eds.), Springer Verlag, LNCS 2539, pp. 1-9. <br />
<br />
Chen, Chaomei and Börner, Katy. (2002). Top Ten Problems in Visual Interfaces of Digital Libraries.
In <i>Visual Interfaces to Digital Libraries</i>. Börner, K. and Chen, C. (Eds.), Springer Verlag,
LNCS 2539, pp. 226-231.<br />
<br />
Börner, Katy. (2002). Visual Interfaces for Semantic Information Retrieval and Browsing. In Groimenko,
Vladimir and Chen, Chaomei (Eds.),
<i>Visualizing the Semantic Web: XML-based Internet and Information Visualization</i>, Springer Verlag,
Chapter 7, pp. 99-115.<br />
<br />
Börner, Katy. (2002). Twin Worlds: Augmenting, Evaluating, and Studying Three-Dimensional Digital
Cities and Their Evolving Communities. In Tanabe, Makoto, van den Besselaar, Peter, and Ishida, Toru (Eds.),
<i>Digital Cities II: Computational and Sociological Approaches</i>, Springer Verlag,
<a href="http://link.springer.de/link/service/series/0558/tocs/t2362.htm">LNCS 2362</a>, pp. 256-269.
</p>
<p>
Börner, Katy. (2001). Adaptation and Evaluation of 3-Dimensional Collaborative Information
Visualizations . 8th International Conference on User Modeling, Bavaria, Germany. July 13-17, pp. 33-40.<br />
<br />
Börner, Katy, Fehr, Rainer, and Wachsmuth, Ipke. (1998). AkuVis: Interactive visualization of acoustic
data.
<i
>Computer Science for Environmental Protection'98: Networked Structures in Information Technology, the
Environment and Business</i
>, Haasis, H. D. and Ranze, K. C. (Eds.), Metropolis Verlag, Volume 1, pp. 722-728. <br />
<br />
Börner, Katy. (1998). CBR for design. In Bartsch-Spörl, B., Wess, S., Burkhard, H. D., and Lenz,
M. (Eds.), <i>Case-Based Reasoning Technology: From Foundations to Application</i>, Springer Verlag,
<a href="http://link.springer.de/link/service/series/0558/tocs/t1400.htm">LNAI 1400</a>, chapter 8, pp.
201-234. <br />
<br />
Börner, Katy. (1997).
<i
><a href="http://www.infix.com/html/boek-1209316483.html"
>Konzeptbildende Analogie: Integration von Conceptual Clustering und Analogem Schließen zur
effizienten Unterstützung von Entwurfsaufgaben</a
></i
>. Dissertation, INFIX Verlag. <br />
<br />
Börner, Katy, Coulon, Carl-Helmut, Pippig, Eberhard, and Tammer, Elisabeth-Ch. (1996). Structural
similarity and adaptation,<i
>Advances in Case-based Reasoning, Proceedings of the Third European Workshop on Case-Based Reasoning
(EWCBR-96)</i
>, Smith, I. and Faltings, B. (Eds.), Springer Verlag, pp. 58-75. <br />
<br />
Börner, Katy. (1994). Structural similarity as guidance in case-based design. In
<i
>Topics in Case-Based Reasoning - Selected Papers from the First European Workshop on Case-Based Reasoning
(EWCBR-93)</i
>. Wess, S., Althoff, K. D. and Richter, M. M. (Eds.), Lecture Notes in Artificial Intelligence, volume 837,
Springer Verlag, pp. 197-208. <br />
<br />
Voss, Angi, Bartsch-Spörl, Brigitte, Börner, Katy, Coulon, Carl-H., Dürschke, Helge,
Gräther, Wolfgang, Knauff, Markus, Linowski, Bernd, Schaaf, Jörg, and Tammer, Elisabeth-Ch.
(1994). Retrieval of similar layouts - about a very hybrid approach in FABEL. <i>AI in Design 1994</i>,
Gero, J. and Sudweeks, F. (Eds.), Dordrecht: Kluwer Academic Publishers, pp. 625-640.<br />
<br />
<b><i>Edited Books</i></b>
</p>
<p>
<a>Börner, Katy</a>, Conlon, Mike, Corson-Rikert, Jon, Ding, Ying (Eds). (2012).
<em>VIVO: A Semantic Approach to Scholarly Networking and Discovery</em>. Morgan & Claypool Publishers
LLC.
</p>
<p>
Scharnhorst, Andrea, Börner, Katy and van den Besselaar, Peter (Eds.). (2012).
<em>Models of Science Dynamics.</em> Springer Verlag.
</p>
<p>
Börner, Katy and Jinah Park (Eds.). (2009). <em>Visualization and Data Analysis</em>. Proceedings of
SPIE-IS&T Electronic Imaging, SPIE Vol. 7243, SPIE-IS&T.
</p>
<p>
Banissi, Ebad, Börner, Katy, Chen, Chaomei, Dastbaz, Muhammad, Clapworthy, Gordon, Faiola, Anthony,
Izquierdo, Ebroul, Maple, Carsten, Roberts, Jonathan C., Moore, Chris, Ursyn, Anna, Zhang, Jian J. (Eds.).
(2004). <em>Proceedings of the</em> <em>Eighth International Conference on Information Visualization</em>,
IV 2004, 14-16 July 2004, London, UK. IEEE Computer Society.
</p>
<p>
Erbacher, Robert F., Chen, Philip C., Roberts, Jonathan C., Gröhn, Matti and Börner, Katy (Eds.).
(2004). <em>Visualization and Data Analysis</em>. Proceedings of SPIE 2004, Vol. 5295, SPIE-IS&T.
<b><i></i></b>
</p>
<p>
Börner, Katy and Chen, Chaomei (Eds.) (2002). <em>Visual Interfaces to Digital Libraries</em>. Springer
Verlag, <a href="http://link.springer-ny.com/link/service/series/0558/tocs/t2539.htm">LNCS 2539</a>.
</p>
<p>
Banissi, Ebad, Börner, Katy, Chen, Chaomei, Clapworthy, Gordon, Maple, Carsten, Lobben, Amy, Moore,
Christopher J., Roberts, Jonathan C., Ursyn, Anna and Zhang, Jian (Eds.). (2003).
<em>Proceedings of the </em
><a href="http://www.computer.org/cspress/CATALOG/pr01988.htm"
><em>Seventh International Conference on Information Visualization</em></a
>, IV 2003, 16-18 July 2003, London, UK. IEEE Computer Society.<br />
<br />
Erbacher, Robert F., Chen, Philip C., Roberts, Jonathan C., Gröhn, Matti and Börner, Katy (Eds.).
(2003). <em>Visualization and Data Analysis</em>. Proceedings of SPIE 2003, SPIE-IS&T.
<b
><i
><br />
<br />
Conference and Workshop Publication</i
></b
><em><strong>s</strong></em> <em><strong>(peer-reviewed)</strong></em
><br />
</p>
<p>
Reijnhoudt, Linda, Rodrigo Costas, Ed Noyons, Katy Börner, and Andrea Scharnhorst. (2013). ‘Seed+Expand’: A
validated methodology for creating high quality publication oeuvres of individual researchers. Proceedings
of International Society for Scientometrics and Informetrics Conference<em>.</em> 2: 1587-1600.
</p>
<p>
Light, Robert, Ted Polley, and Katy Börner. (2013). Open Data and Open Code for Big Science of Science
Studies. Proceedings of International Society of Scientometrics and Informetrics Conference 2013 2:
1342-1356.
</p>
<p>
Biberstine, Joseph R., Katy Börner, Russell Jackson Duhon, Elisha F. Allgood, and André Skupin. (2012). A
Semantic Map of the last.fm Music Folksonomy. Seventh International Conference on Geographic Information
Science, Columbus, Ohio, USA, September 19-21.
</p>
<p>
Albert, Paul, Holmes, <a>Kristi Börner</a>, <a>Katy,</a> Conlon, Mike. (2012) Research Discovery through
Linked Open Data. <em>ACM/IEEE - CS Joint Conference on Digital Libraries</em>.
</p>
<p>
McDonald, Robert H., Jim Myers, <a>Katy Börner</a>, Beth Plale, Margaret Hedstrom, Ann Zimmerman, Jude Yew,
Robert Light, David Cliff, Ryan Cobine, <a>Stacy Kowalczyk</a>, Kavitha Chrandasekar, Ram Prasanna, Praveen
Kumar, Zaman Aktaruzzaman, Terry McLaren, Rob Kooper, and Luigi Marini. (2012) Building a Data Discovery
Network for Sustainability Science. <em>VIVO Conference</em>.
</p>
<p>
Alencar, Aretha Barbosa, Viera Paulovich, Fernando, Börner, Katy, Ferreira de Oliveira, Maria Christina.
(2012). Time-Aware Visualization of Document Collections. <em>ACM Symposium on Applied Computing</em>,
1111-1118.
</p>
<p>
Zoss, Angela & Börner, Katy (2011). Mapping Interactions within the Evolving Science of Science and
Innovation Policy Community. Ed Noyons & Patrick Ngulube & Jacqueline Leta, Eds. Proceedings of the
13th International Conference of the International Society for Scientometrics & Informetrics, Durban,
South Africa, July 4-7, Vol. 2, Leiden University and University of Zululand, pp. 924-935.
</p>
<p align="left">
Ding, Ying, Sun, Yuyin, Chen, Bin, Börner, Katy, Ding, Li, Wild, David, Wu, Melanie, DiFranzo, Dominic,
Graves Fuenzalida, Alvaro, Li, Daifeng, Milojevic, Stasa, Chen, Shan, Shann & Sankaranarayanan,
Madhuvanthi (2010) Semantic Web Portal: A Platform for Better Browsing and Visualizing Semantic Data.
Proceedings of the International Conference on Active Media Technology, Toronto, Canada, August 28-30.
</p>
<p>
Zoss, Angela, Conover, Michael & Börner, Katy (2010) Where Are The Academic Jobs? Interactive
Exploration of Job Advertisement RSS Feeds in Geospatial and Topical Space. Sun-Ki Chai, John Salerno
(Eds.). Proceedings of the 2010 International Conference on Social Computing, Behavioral Modeling and
Prediction (SBP10), Springer, pp. 238-247.
</p>
<p>
Guo, Hanning, Börner, Katy & Liu, Zeyuan. (2009). Mapping the Domain of "Intelligent
Perception Technology" Research. Proceedings of the Fifth International Conference on Webometrics,
Informetrics and Scientometrics (WIS) and the Tenth COLLNET Meeting.
</p>
<p>
Wernert, Eric, Lakshmipathy, Jagannathan, Boyles, Mike & Börner, Katy (2009). ID2 – A
Scalable and Flexible Mixed-media Information Visualization System for Public Learning Exhibits. Proceedings
of World Conference on Educational Multimedia, Hypermedia and Telecommunications 2009 (pp. 3848-3866).
Chesapeake, VA: AACE.
</p>
<p>
Börner, Katy, Huang, Bonnie (Weixia), Linnemeier, Micah, Duhon, Russell J., Phillips, Patrick, Ma,
Nianli, Zoss, Angela, Guo, Hanning & Price, Mark (2009). Rete-Netzwerk-Red: Analyzing and Visualizing
Scholarly Networks Using the Scholarly Database and the Network Workbench Tool. B. Larsen & J. Leta
(Eds.) Proceedings of the 12th International Conference on Scientometrics and Informetrics, July 14-17,
2009, Rio de Janeiro, Brazil, Volume 2, pp. 619-630.
</p>
<p>
Börner, Katy, Uzzo, Stephen M., Palmer, Fileve, Davis, Julie M., Hardy, Elisha F. and Hook, Bryan J.
(2009) Teaching Children the Structure of Science. SPIE Conference on Visualization and Data Analysis, San
Jose, CA, Jan 19-20, 2009. Vol. 7243, pp. 724307: 1-14.
</p>
<p>
Herr II, Bruce W., Duhon, Russell J., Börner, Katy, Hardy, Elisha F. and Penumarthy, Shashikant (2008)
113 Years of Physical Review: Using Flow Maps to Show Temporal and Topical Citation Patterns. Proceedings of
the 12th Information Visualization Conference (IV 2008), London, UK, July 9-11, IEEE Computer Society
Conference Publishing Services, pp. 421-426.
</p>
<p>
Boyack, Kevin W., Klavans, Richard, Paley, W. Bradford & Börner, Katy (2007). Mapping,
Illuminating, and Interacting with Science. In <em>ACM Siggraph 2007 Sketches</em>, ACM.
</p>
<p>
LaRowe, Gavin, Ichise, Ryutaro and Börner, Katy (2007) Visualizing Japanese Co-Authorship Data. In
Proceedings of the 11th Information Visualization Conference, ETH Zürich, Switzerland, July 4-6, IEEE
Computer Society Conference Publishing Services, pp. 459-464.
</p>
<p>
Neirynck, Thomas and Börner, Katy (2007) Representing, Analyzing, and Visualizing Scholarly Data in
Support of Research Management. In Proceedings of the 11th Information Visualisation Conference, ETH
Zürich, Switzerland, IEEE Computer Society Conference Publishing Services, pp. 124-129.
</p>
<p>
Mane, Ketan K. and Börner, Katy (2007) Computational Diagnostics: A Novel Approach to Viewing Medical
Data. Proceedings of the Fifth International Conference on Coordinated and Multiple Views in Exploratory
Visualization (CMV 2007), July 2, IEEE Computer Society Conference Publishing Services, pp. 27-34.
</p>
<p>
Herr, Bruce W., Ke, Weimao, Hardy, Elisha,and Börner, Katy (2007) Movies and Actors: Mapping the
Internet Movie Database. Conference Proceedings of 11th Annual Information Visualization International
Conference (IV 2007), Zürich, Switzerland, July 4-6, IEEE Computer Society Conference Publishing
Services, pp. 465-469.
</p>
<p>
Boyack, Kevin W., Börner, Katy and Klavans, Richard. (2007) Mapping the Structure and Evolution of
Chemistry Research. In Proceedings of the 11th International Conference on Scientometrics and Informetrics,
Madrid, Spain, June 25-27, 2007, pp. 112-123.