-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpeopleOld.html
executable file
·1525 lines (1359 loc) · 121 KB
/
peopleOld.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
<html>
<head>
<title>iDVL People</title>
<link rel="shortcut icon" href="images/iDVLlogo/V2.png">
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
$(function(){
$("#header").load("header.html", function () {
d3.select("#peopleTab").classed("selected", true);
});
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<div id="header"></div>
<div id="content">
<div id="site_content" class= "fullPage">
<div id="top_border"></div>
<div class="images imgOne tommy hovereffect" style="margin-right: 13px;">
<img src="images/people/tommy_idvl_2019.jpg" width="auto" height="auto" alt="Tommy Dang" class="resize">
<div class="overlay">
<h3>Tommy Dang</h3>
</div>
</div>
<div class="images imgThree vung hovereffect">
<img src="images/people/vung_idvl_2019.jpg" width="auto" height="auto" alt="Vung Pham" class="resize">
<div class="overlay">
<h3>Vung Pham</h3>
</div>
</div>
<div class="images imgFive ngan hovereffect">
<img src="images/people/ngan_idvl_2019.jpg" width="auto" height="auto" alt="Ngan Nguyen" class="resize">
<div class="overlay">
<h3>Ngan N.</h3>
</div>
</div>
<div class="images imgTwo vinh hovereffect">
<img src="images/people/vinh_idvl_2019.jpg" width="auto" height="auto" alt="Vinh Nguyen" class="resize">
<div class="overlay">
<h3>Vinh Nguyen</h3>
</div>
</div>
<div class="images imgFour huyen hovereffect">
<img src="images/people/huyen_idvl_2019.jpg" width="auto" height="auto" alt="Huyen Nguyen" class="resize">
<div class="overlay">
<h3>Huyen N.</h3>
</div>
</div>
<div class="images imgNine bao hovereffect">
<img src="images/people/bao_idvl_2019.jpg" width="auto" height="auto" alt="Bao Nguyen" class="resize">
<div class="overlay">
<h3>Bao Nguyen</h3>
</div>
</div>
<div class="images imgEight hao hovereffect">
<img src="images/people/hao_idvl_2019.jpg" width="auto" height="auto" alt="Hao Van" class="resize">
<div class="overlay">
<h3>Hao Van</h3>
</div>
</div>
<div class="images imgTen chau hovereffect">
<img src="images/people/chau.jpg" width="auto" height="auto" alt="Chau Pham" class="resize">
<div class="overlay">
<h3>Chau Pham</h3>
</div>
</div>
<div class="members">
<div class="cFaculty">Director</div>
<div class="currentMembers">Current PhD students</div>
</div>
<div class="images imgSix nhat hovereffect">
<img src="images/people/nhat.jpg" width="auto" height="auto" alt="Nhat Le" class="resize">
<div class="overlay">
<h3>Nhat Le</h3>
</div>
</div>
<div class="images imgSeven lino hovereffect">
<img src="images/people/VirgenGraciaLino.png" width="auto" height="auto" alt="Lino" class="resize">
<div class="overlay">
<h3>Lino Virgen</h3>
</div>
</div>
<div class="members">
<div class="MsStudent">Current MS students</div>
</div>
<br>
<div class="images imgEleven juanita hovereffect">
<img src="images/people/juanita.jpg" width="auto" height="auto" alt="Juanita" class="resize">
<div class="overlay">
<h3>Juanita</h3>
</div>
</div>
<div class="members">
<div class="UnderStudent">Current Undergraduate Student</div>
</div>
<div class="personImgBorder" style="margin-bottom: 5px; margin-top: 25px;"></div>
<div class="infoArea content fullPage">
<div id="infOne">
<div id="tommy" class="person">
<div class="personImg"></div>
<div class="personInfo">
<h3>Tommy Dang, <span class="designation">Assistant Professor, Fall 2016 - </span></h3>
<p class="shortInfo">
Tommy Dang leads the interactive Data Visualization Lab (iDVL). He is currently an Assistant Professor in the Computer Science Department at Texas Tech University. His research on interactive visual analytics has appeared in Computer Graphics Forum and IEEE Transactions on Visualization and Computer Graphics and has been presented at VIS, EuroVis, BioVis, and PacificVis, among others.
</p>
<p class="personLinks">
<a href="file/TommyDang-2016-CV.pdf"> <img src="images/icons/cv.gif" height="32" padding="0" alt="TuanDang CV"/></a>
<a href="http://www.myweb.ttu.edu/tnhondan/"> <img src="images/icons/webico.png" height="22" padding="0" alt="Website of Tommy Dang"/></a>
<a href="http://www.linkedin.com/in/tuan-dang-ab6221a"> <img src="images/icons/Linked.png" height="22" alt="Linked profile"/></a>
<a href="http://github.com/Tommy-Dang"> <img src="images/icons/github.png" height="22" alt="Github" /></a>
<a href="http://scholar.google.com/citations?user=jobGGfEAAAAJ"> <img src="images/icons/GoogleScholar.png" height="26" padding="0" alt="Google Scholar"/></a>
<a href="https://www.researchgate.net/profile/Tommy_Dang2"> <img src="images/icons/RG.png" height="23" padding="0" alt="Research Gate"/></a>
<a href="images/icons/orcid_qrcode.png"> <img src="images/icons/orcid_qrcode_tommy.png" height="21" padding="0" alt="orcid_qrcode"/></a>
<a href="http://orcid.org/0000-0001-8322-0014"> <img src="images/icons/ORCID.png" height="21" padding="0" alt="ORCid"/></a>
<a href="http://www.researcherid.com/rid/P-9915-2016"> <img src="images/icons/researcherID.png" height="22" padding="0" alt="researcherID"/></a>
</p>
<div class="personPub" id="tommyPub">
<br/><h4>Recent Publications:</h4>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/2019_HiperVR.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[S5]</font>
<i>HiperVR: A Virtual Reality model for High Performance Computing Systems</i><br/>
Ngan Nguyen, Lino Virgen, and Tommy Dang<br/>
Practice & Experience in Advanced Research Computing Conference Series, <a href="https://www.pearc19.pearc.org/">PEARC10: July 28 - August 1, 2019 Chicago, IL</a>.<br/>
<a href="https://dl.acm.org/citation.cfm?id=3337958"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://www.youtube.com/watch?v=iKmpS74G6xM"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/HPCC/tree/master/HiperView20190531/HPCC_VR"> <img src="images/icons/github.png" height="18"></a>
<a href="https://dl.acm.org/citation.cfm?id=3337958" class="button">DOI</a>
<a href="https://dl.acm.org/citation.cfm?id=3337958"> <img src="images/icons/bibtex.png" height="13"></a>
<a href="https://orcid.org/0000-0001-5039-8019"> <img src="images/icons/ORCID.png" height="21" padding="0" alt="ORCid"/></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/PhaseSpace.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W14]</font>
<i>SpacePhaser: Phase Space Embedding Visual Analytics</i><br/>
Ngan Nguyen and Tommy Dang<br/>
IEEE International Workshop on Deep Analysis of Data-Driven Applications, <a href="https://ieeecompsac.computer.org/2019/dada/">DADA 2019 @ COMPSAC, July 15, Milwaukee, WI</a>.<br/>
<a href="https://github.com/VixLAB/SpacePhaser/raw/master/paper.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://vixlab.github.io/SpacePhaser/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/VixLAB/SpacePhaser"> <img src="images/icons/github.png" height="18"></a>
<a href="https://ieeexplore.ieee.org/abstract/document/8753913" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/abstract/document/8753913"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/SOAViz.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W13]</font>
<i>SOAViz: Visualization for Portable X-ray Fluorescence</i><br/>
Vung Pham and Tommy Dang <br/>
The Visualization in Environmental Sciences, <a href="https://www.informatik.uni-leipzig.de/bsv/envirvis2019/">EnvirVis 2019 @ EuroVis</a>.<br/>
<a href=""> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/Soil/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/Soil"> <img src="images/icons/github.png" height="18"></a>
<a href="https://diglib.eg.org/handle/10.2312/envirvis20191102" class="button">DOI</a>
<a href="https://diglib.eg.org/handle/10.2312/envirvis20191102"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/ws.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[S4]</font>
<i>WordStream: Interactive Visualization for Topic Evolution</i><br/>
Tommy Dang, Huyen Nguyen, and Vung Pham<br/>
21st EG/VGTC Conference on Visualization, <a href="https://www.eurovis.org/">EuroVis 2019 , June 3, Porto, Portugal</a>.<br/>
<a href="https://github.com/iDataVisualizationLab/WordStream/blob/master/EuroVis19_WordStream.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/WordStream/video.html"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/WordStream"> <img src="images/icons/github.png" height="18"></a>
<a href="https://diglib.eg.org/handle/10.2312/evs20191178" class="button">DOI</a>
<a href="https://diglib.eg.org/handle/10.2312/2632781"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/FSelector.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[C4]</font>
<i>FSelector: Variable Selection Using Visual Features</i><br/>
Tommy Dang<br/>
The 45th annual conference on computer graphics, visualization and human-computer interaction, <a href="http://graphicsinterface.org/conference/2019/">Graphics Interface (GI) 2019, May 28, Kingston, Canada</a>.<br/>
<a href="https://github.com/FeatureSelector/FeatureSelector.github.io/blob/master/Scagnostics_GI2019.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://featureselector.github.io/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/FeatureSelector/FeatureSelector.github.io"> <img src="images/icons/github.png" height="18"></a>
<a href="http://graphicsinterface.org/proceedings/gi2019/gi2019-7/" class="button">DOI</a>
<a href="http://graphicsinterface.org/proceedings/gi2019/gi2019-7/"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/VPA3.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[C3]</font>
<i>Visualizing Multidimensional Health Status of Data Centers</i><br/>
Tommy Dang<br/>
Lecture Notes in Computer Science book series (LNCS, volume 11027), <a href="https://link.springer.com/book/10.1007/978-3-030-17872-7">Programming and Performance Visualization Tools</a>.<br/>
<a href=""> <img src="images/icons/pdf.png" height="18"></a>
<a href=""> <img src="images/icons/movie.png" height="19"></a>
<a href=""> <img src="images/icons/github.png" height="18"></a>
<a href="https://citation-needed.springer.com/v2/references/10.1007/978-3-030-17872-7_17?format=bibtex&flavour=citation" class="button">DOI</a>
<a href="https://citation-needed.springer.com/v2/references/10.1007/978-3-030-17872-7_17?format=bibtex&flavour=citation"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/HealthTvizer.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W12]</font>
<i>HealthTvizer: Exploring Health Awareness in Twitter Data through Coordinated Multiple Views</i><br/>
Tommy Dang, Sonia Baee, Ngan Nguyen, and Vung Pham<br/>
The 2nd International Workshop on Big Social Management and Analysis, <a href="http://www.comp.hkbu.edu.hk/~xinhuang/BSMDMA2018/">BSMDMA Workshop @ IEEE BigData 2018</a>.<br/>
<a href="https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=8622445"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://healthtvizer.github.io/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/HealthTvizer/HealthTvizer.github.io"> <img src="images/icons/github.png" height="18"></a>
<a href="https://ieeexplore.ieee.org/document/8622445" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/document/8622445"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/FinanViz.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W11]</font>
<i>FinanViz: Visualizing Emerging Topics in Financial News</i><br/>
Ngan Nguyen, Vung Pham, Vinh Nguyen, and Tommy Dang<br/>
The 2nd International Workshop on Big Data for Financial News and Data, <a href="https://intelligentfinance.github.io/2018IEEE-BigData-Workshop/index.html">Financial News 2018</a>.<br/>
<a href="https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=8622097"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/FinanViz/index.html"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/FinanViz"> <img src="images/icons/github.png" height="18"></a>
<a href="https://ieeexplore.ieee.org/document/8622097" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/document/8622097"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="https://myweb.ttu.edu/vinhtngu/images/portfolio/UFOTracker.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W10]</font>
<i>UFO_Tracker: Visualizing UFO sightings</i><br/>
Vinh Nguyen and Tommy Dang<br/>
The 3rd International Workshop on Application of Big Data for Computational Social Science, <a href="https://css-japan.com/en/bigdatacss2018/">ABCSS Workshop @ IEEE BigData 2018</a>.<br/>
<a href="https://myweb.ttu.edu/vinhtngu/data/IEEE_UFO_BigData_CameraReady__S25201.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href=""> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/UFO"> <img src="images/icons/github.png" height="18"></a>
<a href="https://ieeexplore.ieee.org/document/8622418" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/document/8622418"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="https://myweb.ttu.edu/vinhtngu/images/portfolio/IoTViz.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W9]</font>
<i>IoTViz: Visualizing Emerging Topics in the Internet of Things</i><br/>
Vung Pham, Vinh Nguyen, and Tommy Dang<br/>
Big Data Engineering and Analytics in Cyber-Physical Systems, <a href="https://sites.google.com/site/bigeacps18">BigEACPS'18</a>.<br/>
<a href="https://myweb.ttu.edu/vinhtngu/data/IEEE_BigData_IoT_CameraReady.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/IoT/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/IoT"> <img src="images/icons/github.png" height="18"></a>
<a href="https://ieeexplore.ieee.org/document/8622375" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/document/8622375"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/HPCViz.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W8]</font>
<i>HPCViz: Visualizing and Monitoring Health Status of High Performance Computing Systems</i><br/>
Tommy Dang, Vinh Nguyen, Vung Pham, Ghazanfar Ali, Yong Chen<br/>
The 2nd International Industry/University Workshop on Data-center Automation, Analytics, and Control, <a href="https://daac-general.nsfcac.org/daac-2018">DAAC 2918</a>.<br/>
<a href="https://drive.google.com/file/d/10SMKSwVMtkmLHaiBiDwdR_3NnKgUopFZ/view"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/HPCC/HPCViz/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/HPCC/tree/master/HPCViz"> <img src="images/icons/github.png" height="18"></a>
<a href="" class="button">DOI</a>
<a href=""> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/CVExplorer2.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[C2]</font>
<i>CVExplorer: Multidimensional Visualization for Common Vulnerabilities and Exposures</i><br/>
Vung Pham and Tommy Dang <br/>
IEEE International Conference on Big Data, <a href="http://cci.drexel.edu/bigdata/bigdata2018/index.html">IEEE Big Data 2018: Dec 10-13, Seattle, WA</a>.<br/>
<a href="https://github.com/iDataVisualizationLab/CVSS/blob/master/CVExplorer_BigData_2018.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/CVSS/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/CVSS"> <img src="images/icons/github.png" height="18"></a>
<a href="http://cci.drexel.edu/bigdata/bigdata2018/AcceptedPapers.html" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/document/8622092"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/AIVR1.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[C1]</font>
<i>Web-based Virtual Reality development in classroom: From learner's perspectives</i><br/>
Vinh Nguyen and Tommy Dang<br/>
IEEE International Conference on Artificial Intelligence and Virtual Reality, <a href="http://aivr.asia.edu.tw/2018/"> AIVR 2018</a>.<br/>
<a href="https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=8613629"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://www.youtube.com/watch?v=3IT3-mnqayo&feature=youtu.be"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://idatavisualizationlab.github.io/CS5331-VirtualReality/P1/index.html"> <img src="images/icons/github.png" height="18"></a>
<a href="https://ieeexplore.ieee.org/abstract/document/8613629" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/abstract/document/8613629"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/VAST2018mc2.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[A2]</font>
<i>Award: Strong Support for Exploratory Analysis</i><br/>
Vung Pham and Tommy Dang <br/>
VAST Challenge 2018: Mini-Challenge 2, <a href="http://vacommunity.org/VAST+Challenge+2018+MC2">VAST 2018</a>.<br/>
<a href="https://idatavisualizationlab.github.io/VAST2018/mc2/index.htm"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/VAST2018/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/VAST2018"> <img src="images/icons/github.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/VAST2018/heatmap.html" class="button">DOI</a>
<a href=""> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/VAST2018mc3.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[A1]</font>
<i>Honorable Mention: Representation of Small-Scale Temporal Patterns</i><br/>
Tommy Dang and Vung Pham<br/>
VAST Challenge 2018: Mini-Challenge 3, <a href="http://vacommunity.org/VAST+Challenge+2018+MC3">VAST 2018</a>.<br/>
<a href="https://www.researchgate.net/publication/330005824_MTDES_Multi-dimensional_Temporal_Data_Exploration_System_Strong_Support_for_Exploratory_Analysis_Award_in_VAST_2018_Mini-Challenge_2"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/VAST2018mc3/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/VAST2018mc3"> <img src="images/icons/github.png" height="18"></a>
<a href="" class="button">DOI</a>
<a href="https://vimeo.com/319290251"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/MalViz.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[S3]</font>
<i>MalViz: An Interactive Visualization Tool for Tracing Malware</i><br/>
Vinh Nguyen, Akbar Siami Namin, Keith S. Jones, and Tommy Dang<br/>
ACM SIGSOFT International Symposium on Software Testing and Analysis, <a href="https://conf.researchr.org/home/issta-2018">ISSTA 2018</a>.<br/>
<a href="https://github.com/Alex-Nguyen/Malviz/blob/master/paper/ISSTA2018_Demo_CameraReady.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://www.youtube.com/watch?v=4NUMYGhPb4I&feature=youtu.be"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/Alex-Nguyen/Malviz"> <img src="images/icons/github.png" height="18"></a>
<a href="https://dl.acm.org/citation.cfm?doid=3213846.3229501" class="button">DOI</a>
<a href="https://dl.acm.org/citation.cfm?doid=3213846.3229501"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/ComModeler_IMDB.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W7]</font>
<i>ComModeler: Topic Modeling Using Community Detection</i><br/>
Tommy Dang and Vinh Nguyen <br/>
The 9th international EuroVis workshop on Visual Analytics, <a href="http://www.eurova.org/">EuroVA 2018</a>.<br/>
<a href="https://www.researchgate.net/publication/324451738_ComModeler_Topic_Modeling_Using_Community_Detection"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://dycomdetector.github.io/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/DycomDetector/DycomDetector.github.io"> <img src="images/icons/github.png" height="18"></a>
<a href="https://diglib.eg.org/handle/10.2312/eurova20181104" class="button">DOI</a>
<a href="https://diglib.eg.org/handle/10.2312/eurova20181104"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/TensorFlow_LSTM.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W6]</font>
<i>Predict Saturated Thickness using TensorBoard Visualization</i><br/>
Vinh Nguyen, Fang Jin, and Tommy Dang<br/>
The Visualization in Environmental Sciences, <a href="https://www.informatik.uni-leipzig.de/bsv/envirvis2018/">EnvirVis 2018</a>.<br/>
<a href="https://www.researchgate.net/publication/324362772_Predict_Saturated_Thickness_using_TensorBoard_Visualization"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://www.youtube.com/watch?v=GIN6J0pme40"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/Alex-Nguyen/SaturatedThicknessTensorBoard"> <img src="images/icons/github.png" height="18"></a>
<a href="https://diglib.eg.org/handle/10.2312/envirvis20181135" class="button">DOI</a>
<a href="https://diglib.eg.org/handle/10.2312/envirvis20181135"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/SettingUpVR.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W5]</font>
<i>Setting up virtual reality and augmented reality learning environment in Unity</i><br/>
Vinh Nguyen and Tommy Dang<br/>
IEEE Workshop on Virtual, Augmented and Mixed Reality in Education , <a href="https://www.vamre.org/">ISMAR 2017 </a>.<br/>
<a href="https://myweb.ttu.edu/vinhtngu/contents/2017/VAMRE/SetupVRUnity.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://drive.google.com/file/d/1QZkop1Vl17tabTXLwWEYegCt9uq5Vr4r/view"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://terrain.party/"> <img src="images/icons/github.png" height="18"></a>
<a href="http://ieeexplore.ieee.org/document/8088512/" class="button">DOI</a>
<a href="bibTex/Nguyen2017SettingUpVR.txt"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/CancerMapper.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W4]</font>
<i>CancerLinker: Explorations of Cancer Study Network</i><br/>
Vinh Nguyen, Yasin Kabir, and Tommy Dang<br/>
Visualization in Data Science at IEEE VIS 2017, <a href="http://www.visualdatascience.org/2017/">VDS 2017</a>.<br/>
<a href="https://arxiv.org/pdf/1710.06062.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://www.youtube.com/embed/ioyaTPani4A"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/CancerLinker"> <img src="images/icons/github.png" height="18"></a>
<a href="https://arxiv.org/abs/1710.06062" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/document/8573445"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/CactusStudy.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W3]</font>
<i>A User Study of Techniques for Visualizing Structure and Connectivity in Hierarchical Datasets</i><br/>
Tommy Dang, Paul Murray, Ronak Etemadpour, and Angus G. Forbes<br/>
Proceedings of the 3rd International Workshop on Visualization and Interaction for Ontologies and Linked Data, <a href="http://voila2017.visualdataweb.org/">VOILA 2017</a>.<br/>
<a href="http://ceur-ws.org/Vol-1947/paper05.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="http://cactustrees.github.io/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/CactusTrees/CactusTrees.github.io"> <img src="images/icons/github.png" height="18"></a>
<a href="http://ceur-ws.org/Vol-1947/" class="button">DOI</a>
<a href="bibTex/Dang2017CactusStudy.txt"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/Dycom.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W2]</font>
<i>DycomDetector: Discover topics using automatic community detections in dynamic networks</i><br/>
Tommy Dang , Vinh Nguyen, and Yasin Kabir<br/>
KDD 2017 Workshop on Interactive Data Exploration and Analytics, <a href="http://poloclub.gatech.edu/idea2017/">IDEA 2017</a>.<br/>
<a href="https://github.com/iDataVisualizationLab/DycomDetector/blob/master/paper/DycomDetector.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://www.youtube.com/watch?v=Sk1rde-C0Pc&feature=youtu.be"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/DycomDetector"> <img src="images/icons/github.png" height="18"></a>
<a href="https://www.researchgate.net/publication/328006659_DycomDetector_Discover_topics_using_automatic_community_detections_in_dynamic_networks" class="button">DOI</a>
<a href="https://www.researchgate.net/publication/328006659_DycomDetector_Discover_topics_using_automatic_community_detections_in_dynamic_networks"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="https://github.com/iDataVisualizationLab/SaturatedThickness/raw/master/files/STOAViz.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W1]</font>
<i>STOAViz: Visualizing Saturated Thickness of Ogallala Aquifer.</i><br/>
Tommy Dang, Long Hoang Nguyen, Abdullah Karim, and Venki Uddameri.<br/>
The Visualization in Environmental Sciences, <a href="http://www.informatik.uni-leipzig.de/~envirvis2017/">EnvirVis 2017</a>.<br/>
<a href="https://github.com/iDataVisualizationLab/SaturatedThickness/raw/master/files/STOAViz.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://myweb.ttu.edu/longhngu/resources/demo-saturated-thickness.mp4"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/SaturatedThickness"> <img src="images/icons/github.png" height="18"></a>
<a href="https://diglib.eg.org/handle/10.2312/envirvis20171102" class="button">DOI</a>
<a href="bibTex/Dang2017StoaViz.txt"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/cactus.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[S2]</font>
<i>CactusTree: A Tree Drawing Approach for Hierarchical Edge Bundling.</i><br/>
Tommy Dang and Angus Forbes.<br/>
Proceedings of the 10th IEEE Pacific Visualization Symposium, <a href="http://pacificvis.snu.ac.kr/">PacificVis 2017</a>.<br/>
<a href="https://github.com/iDataVisualizationLab/webFiles/raw/master/CactusTree/CactusTree.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://github.com/iDataVisualizationLab/webFiles/blob/master/CactusTree/CactusTree.mp4?raw=true"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/CreativeCodingLab/HierarchicalCircularLayout"> <img src="images/icons/github.png" height="18"></a>
<a href="http://ieeexplore.ieee.org/document/8031596/" class="button">DOI</a>
<a href="bibTex/Dang2017CactusTree.txt"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="https://raw.githubusercontent.com/CreativeCodingLab/BioLinker/master/figures/Figure1.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[S1]</font>
<i>BioLinker: Bottom-up exploration of protein interaction network.</i><br/>
Tommy Dang, Paul Murray, and Angus Forbes.<br/>
Proceedings of the 10th IEEE Pacific Visualization Symposium, <a href="http://pacificvis.snu.ac.kr/">PacificVis 2017</a>.<br/>
<a href="https://github.com/iDataVisualizationLab/BioLinker/raw/master/files/BioLinker.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="http://www2.cs.uic.edu/~tdang/BioLinker/BioLinker.mp4"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/BioLinker"> <img src="images/icons/github.png" height="18"></a>
<a href="http://ieeexplore.ieee.org/document/8031603/" class="button">DOI</a>
<a href="bibTex/Dang2017BioLinker.txt"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
</div>
</div>
<br/><br/>
<div class="personBorder"></div>
</div>
</div>
<div id="infThree">
<div id="vung" class="person">
<div class="personImg"></div>
<div class="personInfo">
<h3>Pham Van Vung, <span class="designation">Ph.D. Student, Summer 2018 - </span></h3>
<p class="shortInfo">
Vung received his Bachelor of Science in Information Technologies from President University (Indonesia) in 2005 and became a lecturer at President University for one and a half years. He then took his Master of Science in Computer Systems Engineering at Politecnico di Milano and completed it in 2010. After his Master degree, he became a lecturer at FPT University (Vietnam) from 2010 until 2018. He has a great interest in data analytics and data visualization and so he decided to take his PhD in Computer Science at TTU and work at the IDV Lab to strengthen his research skills and his knowledge in these fields.
</p>
<p class="personLinks">
<a href="file/vung.pdf"> <img src="images/icons/cv.gif" height="32" padding="0" alt="CV"/></a>
<a href="http://www.myweb.ttu.edu/vunpham"> <img src="images/icons/webico.png" height="22" padding="0" alt="Website of Vung Pham"/></a>
<a href="https://www.linkedin.com/in/phamvanvung/"> <img src="images/icons/Linked.png" height="22" alt="Linked profile"/></a>
<a href="https://github.com/phamvanvung"> <img src="images/icons/github.png" height="22" alt="Github" /></a>
<a href="https://scholar.google.com.vn/citations?hl=en&user=QMpiK3UAAAAJ"> <img src="images/icons/GoogleScholar.png" height="26" padding="0" alt="Google Scholar"/></a>
<a href="https://www.youtube.com/channel/UCTiix4xPlgA8DmlUYPIL0eA"> <img src="images/icons/youtubelogo.png" height="26" padding="0" alt="Youtube channel"/></a>
</p>
<div class="personPub" id="vungPub">
<br/><h4>Recent Publications:</h4>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/SOAViz.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W13]</font>
<i>SOAViz: Visualization for Portable X-ray Fluorescence</i><br/>
Vung Pham and Tommy Dang <br/>
The Visualization in Environmental Sciences, <a href="https://www.informatik.uni-leipzig.de/bsv/envirvis2019/">EnvirVis 2019 @ EuroVis</a>.<br/>
<a href=""> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/Soil/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/Soil"> <img src="images/icons/github.png" height="18"></a> <a href="https://diglib.eg.org/handle/10.2312/envirvis20191102" class="button">DOI</a>
<a href="https://diglib.eg.org/handle/10.2312/envirvis20191102"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/ws.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[S4]</font>
<i>WordStream: Interactive Visualization for Topic Evolution</i><br/>
Tommy Dang, Huyen Nguyen, and Vung Pham<br/>
21st EG/VGTC Conference on Visualization, <a href="https://www.eurovis.org/">EuroVis 2019 , June 3, Porto, Portugal</a>.<br/>
<a href="https://github.com/iDataVisualizationLab/WordStream/blob/master/EuroVis19_WordStream.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/WordStream/video.html"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/WordStream"> <img src="images/icons/github.png" height="18"></a> <a href="https://diglib.eg.org/handle/10.2312/evs20191178" class="button">DOI</a>
<a href="https://diglib.eg.org/handle/10.2312/2632781"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/HealthTvizer.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W12]</font>
<i>HealthTvizer: Exploring Health Awareness in Twitter Data through Coordinated Multiple Views</i><br/>
Tommy Dang, Sonia Baee, Ngan Nguyen, and Vung Pham<br/>
The 2nd International Workshop on Big Social Management and Analysis, <a href="http://www.comp.hkbu.edu.hk/~xinhuang/BSMDMA2018/">BSMDMA Workshop @ IEEE BigData 2018</a>.<br/>
<a href="https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=8622445"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://healthtvizer.github.io/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/HealthTvizer/HealthTvizer.github.io"> <img src="images/icons/github.png" height="18"></a> <a href="https://ieeexplore.ieee.org/document/8622445" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/document/8622445"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/FinanViz.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W11]</font>
<i>FinanViz: Visualizing Emerging Topics in Financial News</i><br/>
Ngan Nguyen, Vung Pham, Vinh Nguyen, and Tommy Dang<br/>
The 2nd International Workshop on Big Data for Financial News and Data, <a href="https://intelligentfinance.github.io/2018IEEE-BigData-Workshop/index.html">Financial News 2018</a>.<br/>
<a href="https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=8622097"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/FinanViz/index.html"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/FinanViz"> <img src="images/icons/github.png" height="18"></a> <a href="https://ieeexplore.ieee.org/document/8622097" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/document/8622097"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="https://myweb.ttu.edu/vinhtngu/images/portfolio/IoTViz.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W9]</font>
<i>IoTViz: Visualizing Emerging Topics in the Internet of Things</i><br/>
Vung Pham, Vinh Nguyen, and Tommy Dang<br/>
Big Data Engineering and Analytics in Cyber-Physical Systems, <a href="https://sites.google.com/site/bigeacps18">BigEACPS'18</a>.<br/>
<a href="https://myweb.ttu.edu/vinhtngu/data/IEEE_BigData_IoT_CameraReady.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/IoT/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/IoT"> <img src="images/icons/github.png" height="18"></a> <a href="https://ieeexplore.ieee.org/document/8622375" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/document/8622375"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/HPCViz.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W8]</font>
<i>HPCViz: Visualizing and Monitoring Health Status of High Performance Computing Systems</i><br/>
Tommy Dang, Vinh Nguyen, Vung Pham, Ghazanfar Ali, Yong Chen<br/>
The 2nd International Industry/University Workshop on Data-center Automation, Analytics, and Control, <a href="https://daac-general.nsfcac.org/daac-2018">DAAC 2918</a>.<br/>
<a href="https://drive.google.com/file/d/10SMKSwVMtkmLHaiBiDwdR_3NnKgUopFZ/view"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/HPCC/HPCViz/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/HPCC/tree/master/HPCViz"> <img src="images/icons/github.png" height="18"></a> <a href="" class="button">DOI</a>
<a href=""> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/CVExplorer2.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[C2]</font>
<i>CVExplorer: Multidimensional Visualization for Common Vulnerabilities and Exposures</i><br/>
Vung Pham and Tommy Dang <br/>
IEEE International Conference on Big Data, <a href="http://cci.drexel.edu/bigdata/bigdata2018/index.html">IEEE Big Data 2018: Dec 10-13, Seattle, WA</a>.<br/>
<a href="https://github.com/iDataVisualizationLab/CVSS/blob/master/CVExplorer_BigData_2018.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/CVSS/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/CVSS"> <img src="images/icons/github.png" height="18"></a> <a href="http://cci.drexel.edu/bigdata/bigdata2018/AcceptedPapers.html" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/document/8622092"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/VAST2018mc2.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[A2]</font>
<i>Award: Strong Support for Exploratory Analysis</i><br/>
Vung Pham and Tommy Dang <br/>
VAST Challenge 2018: Mini-Challenge 2, <a href="http://vacommunity.org/VAST+Challenge+2018+MC2">VAST 2018</a>.<br/>
<a href="https://idatavisualizationlab.github.io/VAST2018/mc2/index.htm"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/VAST2018/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/VAST2018"> <img src="images/icons/github.png" height="18"></a> <a href="https://idatavisualizationlab.github.io/VAST2018/heatmap.html" class="button">DOI</a>
<a href=""> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/VAST2018mc3.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[A1]</font>
<i>Honorable Mention: Representation of Small-Scale Temporal Patterns</i><br/>
Tommy Dang and Vung Pham<br/>
VAST Challenge 2018: Mini-Challenge 3, <a href="http://vacommunity.org/VAST+Challenge+2018+MC3">VAST 2018</a>.<br/>
<a href="https://www.researchgate.net/publication/330005824_MTDES_Multi-dimensional_Temporal_Data_Exploration_System_Strong_Support_for_Exploratory_Analysis_Award_in_VAST_2018_Mini-Challenge_2"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://idatavisualizationlab.github.io/VAST2018mc3/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/VAST2018mc3"> <img src="images/icons/github.png" height="18"></a> <a href="" class="button">DOI</a>
<a href="https://vimeo.com/319290251"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
</div>
</div>
<br>
<div class="personBorder"></div>
</div>
</div>
<div id="infFive">
<div id="ngan" class="person">
<div class="personImg"></div>
<div class="personInfo">
<h3>Ngan Vuong Thuy Nguyen, <span class="designation">Ph.D. Student, Fall 2018 - </span></h3>
<p class="shortInfo">
Ngan earned her Bachelor's Degree in Physics and Engineering Physics at University of Science, VNU-HCM (Vietnam) in 2014. In 2016, she took her Master of Science in Applied Physics at VNU-HCM. From 2015 to 2018, she worked as Teaching Assitant at Department of Physics and Computer Science at VNU-HCM.
Her research interests are in simulation, signal processing (ECG and EEG), IoT and user interface most recently focusing on the application of pattern recognization on EEG.
</p>
<p class="personLinks">
<a href="file/Ngan.pdf"> <img src="images/icons/cv.gif" height="32" padding="0" alt="Ngan Nguyen CV"/></a>
<a href="http://www.myweb.ttu.edu/ngu00336/"> <img src="images/icons/webico.png" height="22" padding="0" alt="Website of Ngan Nguyen"/></a>
<a href="https://www.linkedin.com/in/ngan-nguyen-6a0246128/"> <img src="images/icons/Linked.png" height="22" alt="Linked profile"/></a>
<a href="https://github.com/nvtNgan"> <img src="images/icons/github.png" height="22" alt="Github" /></a>
<a href="https://scholar.google.com.vn/citations?hl=vi&user=yRClsxgAAAAJ"> <img src="images/icons/GoogleScholar.png" height="26" padding="0" alt="Google Scholar"/></a>
</p>
<div class="personPub" id="nganPub">
<br/><h4>Recent Publications:</h4>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/2019_HiperVR.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[S5]</font>
<i>HiperVR: A Virtual Reality model for High Performance Computing Systems</i><br/>
Ngan Nguyen, Lino Virgen, and Tommy Dang<br/>
Practice & Experience in Advanced Research Computing Conference Series, <a href="https://www.pearc19.pearc.org/">PEARC10: July 28 - August 1, 2019 Chicago, IL</a>.<br/>
<a href="https://dl.acm.org/citation.cfm?id=3337958"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://www.youtube.com/watch?v=iKmpS74G6xM"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/iDataVisualizationLab/HPCC/tree/master/HiperView20190531/HPCC_VR"> <img src="images/icons/github.png" height="18"></a> <a href="https://dl.acm.org/citation.cfm?id=3337958" class="button">DOI</a>
<a href="https://dl.acm.org/citation.cfm?id=3337958"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/PhaseSpace.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W14]</font>
<i>SpacePhaser: Phase Space Embedding Visual Analytics</i><br/>
Ngan Nguyen and Tommy Dang<br/>
IEEE International Workshop on Deep Analysis of Data-Driven Applications, <a href="https://ieeecompsac.computer.org/2019/dada/">DADA 2019 @ COMPSAC, July 15, Milwaukee, WI</a>.<br/>
<a href="https://github.com/VixLAB/SpacePhaser/raw/master/paper.pdf"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://vixlab.github.io/SpacePhaser/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/VixLAB/SpacePhaser"> <img src="images/icons/github.png" height="18"></a> <a href="https://ieeexplore.ieee.org/abstract/document/8753913" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/abstract/document/8753913"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/HealthTvizer.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W12]</font>
<i>HealthTvizer: Exploring Health Awareness in Twitter Data through Coordinated Multiple Views</i><br/>
Tommy Dang, Sonia Baee, Ngan Nguyen, and Vung Pham<br/>
The 2nd International Workshop on Big Social Management and Analysis, <a href="http://www.comp.hkbu.edu.hk/~xinhuang/BSMDMA2018/">BSMDMA Workshop @ IEEE BigData 2018</a>.<br/>
<a href="https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=8622445"> <img src="images/icons/pdf.png" height="18"></a>
<a href="https://healthtvizer.github.io/"> <img src="images/icons/movie.png" height="19"></a>
<a href="https://github.com/HealthTvizer/HealthTvizer.github.io"> <img src="images/icons/github.png" height="18"></a> <a href="https://ieeexplore.ieee.org/document/8622445" class="button">DOI</a>
<a href="https://ieeexplore.ieee.org/document/8622445"> <img src="images/icons/bibtex.png" height="13"></a>
</th>
</tr>
</table>
</div>
<div class="publicationArea">
<table style="width:100%; margin-left: 25px;">
<tr>
<th class="paperThumb" width="15%">
<img src="images/papers/FinanViz.png" width="200" height="100">
</th>
<th width="85%" style="padding-left: 25px;">
<font color="#e78ac3">[W11]</font>
<i>FinanViz: Visualizing Emerging Topics in Financial News</i><br/>
Ngan Nguyen, Vung Pham, Vinh Nguyen, and Tommy Dang<br/>
The 2nd International Workshop on Big Data for Financial News and Data, <a href="https://intelligentfinance.github.io/2018IEEE-BigData-Workshop/index.html">Financial News 2018</a>.<br/>