-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1150 lines (1132 loc) · 51.3 KB
/
index.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>
<html>
<head></head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Carolina Data Challenge</title>
<link rel="icon" href="img/logo.png">
<!--CSS-->
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./bulma-0.7.5/css/bulma.css">
<link rel="stylesheet" href="./css/mystyles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<!-- JQuery -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.4/umd/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.8.10/js/mdb.min.js"></script>
</head>
<body>
<section class="hero is-info is-fullheight">
<!-- particles.js container -->
<div id="particles-js"></div>
<script src='https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js'></script>
<script src="./scripts/particles.js"></script>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://carolinadata.unc.edu/" id="CADS">
<h1>CADS</h1>
</a>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<span class="navbar-item">
<a class="button is-white is-outlined" href="#home">
<span class="icon">
<i class="fa fa-home"></i>
</span>
<span>Home</span>
</a>
</span>
<span class="navbar-item">
<a class="button is-white is-outlined" href="#info">
<span class="icon">
<i class="fa fa-book"></i>
</span>
<span>Info</span>
</a>
</span>
<span class="navbar-item">
<a class="button is-white is-outlined" href="#schedule">
<span class="icon">
<i class="fa fa-calendar" aria-hidden="true"></i>
</span>
<span>Schedule</span>
</a>
</span>
<span class="navbar-item">
<a class="button is-white is-outlined" href="#winners">
<span class="icon">
<i class="fa fa-trophy" aria-hidden="true"></i>
</span>
<span>Winners</span>
</a>
</span>
<span class="navbar-item">
<a class="button is-white is-outlined" href="#prizes">
<span class="icon">
<i class="fas fa-gift"></i>
</span>
<span>Prizes</span>
</a>
</span>
<span class="navbar-item">
<a class="button is-white is-outlined" href="#sponsors">
<span class="icon">
<i class="fa fa-link"></i>
</span>
<span>Sponsors</span>
</a>
</span>
<span class="navbar-item">
<a class="button is-white is-outlined" href="#contact">
<span class="icon">
<i class="fa fa-address-book"></i>
</span>
<span>Contact</span>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</nav>
<!--Landing body-->
<div class="hero-body" id="home">
<div class="container has-text-centered">
<img src="./img/CDC-logo.png" width="70%">
<h4 style="color:#545E60">Powered by</h4>
<img src="./img/captech_topcrop.png" width="25%">
<div class="columns has-text-centered">
<div class="column is-one-fifth"></div>
<div class="column">
<a class="button is-warning is-focused is-fullwidth"
href="https://tinyurl.com/cdcunc-volunteer">
Volunteer
</a>
</div>
<div class="column is-one-fifth"></div>
</div>
</div>
</div>
</div>
</section>
<section class="hero is-medium is-primary is-bold" id="info">
<div class="hero-body">
<div class="container">
<h1>When:
<b>
October 5th, 8am - October 6th, 4pm, 2019
</b>
</h1>
<h1>Where:
<b>
Sitterson Hall,
201 S. Columbia St,
Chapel Hill, 27599
</b>
</h1>
</div>
</div>
</section>
<section class="hero is-dark">
<div class="hero-body">
<div class="container">
<h1>
<b>
What?
</b>
</h1>
<p class="is-size-4">
The Carolina Data Challenge is a 24-hour data science oriented hackathon hosted at The University of
North Carolina at Chapel Hill.
</p>
<p class="is-size-4">
Participants will have the opportunitiy to hack on a dataset from either the financial, technology,
or non-profit sector. At the end of the event, sponsors will present awards based on presentation
materials such as visualizations, predictive models, valuable insights, etc.
</p>
<p class="is-size-4">
We want this event to be accessible to data scientists of all skill levels! We plan on having
sponsors and mentors hold workshops that will provide hands-on experience with data science concepts
such as model building and visualization.
</p>
<p class="is-size-4">
The event is completely free and meals are included! We are also offering
<a href="https://forms.gle/ddANeCnUqxeo3MZs7" style="color: white">travel
reimbursements</a> to participants traveling more than 60 miles to join us. Travel reimbursement
requests are due Monday, September 30th.
</p>
<h1>
<b>
Who can come?
</b>
</h1>
<p class="is-size-4">
We welcome both undergraduate and graduate students from any school.
</p>
</div>
</div>
</section>
<section class="hero is-info" id="schedule">
<div class="hero-body">
<div class="container" id="schedule_table">
<h3 style="text-align: center">Tentative Schedule</h3>
<div class="columns">
<div class="column is-10 is-offset-1">
<h2 style="text-align: center"><b>Saturday, October 5th</b></h2>
<table class="table">
<thead id="schedule_table">
<tr>
<th>
<h4>Time</h4>
</th>
<th>
<h4>Activity</h4>
</th>
<th>
<h4>Location</h4>
</th>
</tr>
</thead>
<tbody id="schedule_table">
<tr>
<td>
<p>8:00AM - 9:45AM</p>
</td>
<td>
<p>Registration</p>
</td>
<td>
<p>Sitterson Lobby</p>
</td>
</tr>
<tr>
<td>
<p>8:00AM - 9:45AM</p>
</td>
<td>
<p>Breakfast</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>10:00AM - 10:45AM</p>
</td>
<td>
<p>Opening Ceremony</p>
</td>
<td>
<p>Chapman</p>
</td>
</tr>
<tr>
<td>
<p>11:00AM</p>
</td>
<td>
<p>Hacking Begins</p>
</td>
<td>
<p></p>
</td>
</tr>
<tr>
<td>
<p>11:00AM - 11:30AM</p>
</td>
<td>
<p>Team Matching</p>
</td>
<td>
<p>SN014</p>
</td>
</tr>
<tr>
<td>
<p>11:00AM - 1:00PM</p>
</td>
<td>
<p>Sponsorship Fair</p>
</td>
<td>
<p>Sitterson Lobby</p>
</td>
</tr>
<tr>
<td>
<p>12:00PM - 2:00PM</p>
</td>
<td>
<p>Lunch</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>1:00PM</p>
</td>
<td>
<p>CapTech - Tableau Data Visualization</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>1:55PM</p>
</td>
<td>
<p>Barings - Data Science Applied to Finance</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>2:50PM</p>
</td>
<td>
<p>EY - Business Analytics -> Data Science to Stakeholders</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>3:45PM</p>
</td>
<td>
<p>SAS - Visual Text Analytics</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>4:40PM</p>
</td>
<td>
<p>NCSU IAA - Machine Learning</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>5:35PM</p>
</td>
<td>
<p>Valassis - Data Science in the AdTech Industry</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>6:30PM - 8:30PM</p>
</td>
<td>
<p>Dinner</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>8:30PM</p>
</td>
<td>
<p>Women in Data Science Panel</p>
</td>
<td>
<p>FB007</p>
</td>
</tr>
<tr>
<td>
<p>10:00PM</p>
</td>
<td>
<p>Sleeping Rooms Open</p>
</td>
<td>
<p>FB008, FB009</p>
</td>
</tr>
<tr>
<td>
<p>11:00PM</p>
</td>
<td>
<p>Spy & Board Games</p>
</td>
<td>
<p>SN014</p>
</td>
</tr>
</tbody>
</table>
<h2 style="text-align: center"><b>Sunday, October 6th</b></h2>
<table class="table">
<thead id="schedule_table">
<tr>
<th>
<h4>Time</h4>
</th>
<th>
<h4>Activity</h4>
</th>
<th>
<h4>Location</h4>
</th>
</tr>
</thead>
<tbody id="schedule_table">
<tr>
<td>
<p>12:00AM - 1:00AM</p>
</td>
<td>
<p>Nighttime Noms</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>7:00AM - 9:00AM</p>
</td>
<td>
<p>Breakfast</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>11:00AM</p>
</td>
<td>
<p>Hacking Ends / Project Submission Deadline</p>
</td>
<td>
<p></p>
</td>
</tr>
<tr>
<td>
<p>11:00AM - 2:00PM</p>
</td>
<td>
<p>Lunch</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>12:00PM - 2:00PM</p>
</td>
<td>
<p>Demo Fair</p>
</td>
<td>
<p>Sitterson Lobby</p>
</td>
</tr>
<tr>
<td>
<p>3:00PM - 4:00PM</p>
</td>
<td>
<p>Closing Ceremony</p>
</td>
<td>
<p>Chapman</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- <div class="hero-body">
<div class="container">
<h2>Tentative Schedule</h2>
<h3><b>Saturday October 5th</b></h3>
<table>
<thead>
<tr>
<th class="table-header-25">
<h4>Time</h4>
</th>
<th class="table-header-50">
<h4>Activity</h4>
</th>
<th class="table-header-25">
<h4>Location</h4>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>8:00AM - 9:45AM</p>
</td>
<td>
<p>Registration</p>
</td>
<td>
<p>Sitterson Lobby</p>
</td>
</tr>
<tr>
<td>
<p>8:00AM - 9:45AM</p>
</td>
<td>
<p>Breakfast</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>10:00AM - 10:45AM</p>
</td>
<td>
<p>Opening Ceremony</p>
</td>
<td>
<p>Chapman</p>
</td>
</tr>
<tr>
<td>
<p>11:00AM</p>
</td>
<td>
<p>Hacking Begins</p>
</td>
<td>
<p></p>
</td>
</tr>
<tr>
<td>
<p>11:00AM - 11:30AM</p>
</td>
<td>
<p>Team Matching</p>
</td>
<td>
<p>SN014</p>
</td>
</tr>
<tr>
<td>
<p>11:00AM - 1:00PM</p>
</td>
<td>
<p>Sponsorship Fair</p>
</td>
<td>
<p>Sitterson Lobby</p>
</td>
</tr>
<tr>
<td>
<p>12:00PM - 2:00PM</p>
</td>
<td>
<p>Lunch</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>1:00PM</p>
</td>
<td>
<p>CapTech - Tableau Data Visualization</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>1:55PM</p>
</td>
<td>
<p>Barings - Data Science Applied to Finance</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>2:50PM</p>
</td>
<td>
<p>EY - Business Analytics -> Data Science to Stakeholders</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>3:45PM</p>
</td>
<td>
<p>SAS - Visual Text Analytics</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>4:40PM</p>
</td>
<td>
<p>NCSU IAA - Machine Learning</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>5:35PM</p>
</td>
<td>
<p>Valassis - Modern Data Science in AdTech</p>
</td>
<td>
<p>FB009</p>
</td>
</tr>
<tr>
<td>
<p>6:30PM - 8:30PM</p>
</td>
<td>
<p>Dinner</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>8:30PM</p>
</td>
<td>
<p>Women in Data Science Panel</p>
</td>
<td>
<p>FB007</p>
</td>
</tr>
<tr>
<td>
<p>10:00PM</p>
</td>
<td>
<p>Sleeping Rooms Open</p>
</td>
<td>
<p>FB008, FB009</p>
</td>
</tr>
<tr>
<td>
<p>11:00PM</p>
</td>
<td>
<p>Sitterson Lobby</p>
</td>
<td>
<p>FB008, FB009</p>
</td>
</tr>
</tbody>
</table>
<h3><b>Sunday October 6th</b></h3>
<table>
<thead>
<tr>
<th class="table-header-25">
<h4>Time</h4>
</th>
<th class="table-header-50">
<h4>Activity</h4>
</th>
<th class="table-header-25">
<h4>Location</h4>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>12:00AM - 1:00AM</p>
</td>
<td>
<p>Nighttime Noms</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>7:00AM - 9:00AM</p>
</td>
<td>
<p>Breakfast</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>11:00AM</p>
</td>
<td>
<p>Hacking Ends / Project Submission Deadline</p>
</td>
<td>
<p></p>
</td>
</tr>
<tr>
<td>
<p>11:00AM - 2:00PM</p>
</td>
<td>
<p>Lunch</p>
</td>
<td>
<p>Entrepreneurs' Lounge</p>
</td>
</tr>
<tr>
<td>
<p>12:00PM - 2:00PM</p>
</td>
<td>
<p>Demo Fair</p>
</td>
<td>
<p>Sitterson Lobby</p>
</td>
</tr>
<tr>
<td>
<p>3:00PM - 4:00PM</p>
</td>
<td>
<p>Closing Ceremony</p>
</td>
<td>
<p>Chapman</p>
</td>
</tr>
</tbody>
</table>
</div>
</div> -->
</section>
<section class="hero is-medium is-light is-bold" id="prizes">
<div class="hero-body">
<div class="container">
<div class="columns is-centered is-vcentered">
<h1>
<b>
Prizes Per Category
</b>
</h1>
</div>
<div class="columns">
<br>
</div>
<div class="columns is-centered">
<div class="column is-one-quarter has-text-centered">
<h2><b>Beginner</b></h2>
<h2>$100 Gift Card</h2>
<h4>Sponsored by Valassis Digital</h4>
</div>
<div class="column is-one-quarter has-text-centered">
<h2><b>Insight</b></h2>
<h2>JBL Speaker</h2>
<h2>Water Bottle</h2>
<h2>$25 Gift Card</h2>
<h4>Sponsored by Barings</h4>
</div>
<div class="column is-one-quarter has-text-centered">
<h2><b>Outside Data</b></h2>
<h2>2 AirPods</h2>
<h2>2 Bose Speakers</h2>
<h2>Go Pro</h2>
<h4>Sponsored by EY</h4>
</div>
<div class="column is-one-quarter has-text-centered">
<h2><b>Visualization</b></h2>
<h2>$100 Gift Card</h2>
<h4>Sponsored by CapTech</h4>
</div>
</div>
</div>
</div>
</section>
<section id="winners">
<br>
<br>
<div class="columns">
<div class="column is-half is-offset-one-quarter">
<div class="has-text-centered">
<h2>Winners</h2>
<ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="pills-home-tab" data-toggle="pill" href="#pills-home"
role="tab" aria-controls="pills-home" aria-selected="true">2019</a>
</li>
<li class="nav-item">
<a class="nav-link" id="pills-profile-tab" data-toggle="pill" href="#pills-profile"
role="tab" aria-controls="pills-profile" aria-selected="false">2018</a>
</li>
</ul>
<div class="tab-content pt-2 pl-1" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-home" role="tabpanel"
aria-labelledby="pills-home-tab">
<table class="table">
<thead>
<tr>
<th scope="col">Place</th>
<th scope="col">Team Name</th>
<th scope="col">Team Members</th>
<th scope="col">Project Links</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1st - Best Beginner</th>
<td>R&R</td>
<td>Rui Wu<br>Rohan Patel</td>
<td>
<a target="_blank"
href="https://data.world/putt-putt/cdc2019rrquantwork">Project
Site</a>
</td>
</tr>
<tr>
<th scope="row">2nd - Best Beginner</th>
<td>pd.read_csv("winning_team.csv")</td>
<td>Ishaan Radia<br>Sam Galloway<br>AKM Zubair Siam<br>Alaina Randolph</td>
<td>
<a target="_blank"
href="https://data.world/pythonishaan/pdreadcsvwinningteamcsv-cdc2019">Project
Site</a>
</td>
</tr>
<tr>
<th scope="row">1st - Visualization</th>
<td>CrimeStoppers</td>
<td>Amit Min<br>Eduardo Solares<br>Saisiddharth Kandimalla<br>Yoel Kifelzghi
</td>
<td>
<a target="_blank"
href="https://prod-useast-a.online.tableau.com/t/crimestoppers/views/CrimeStoppers/Dashboard1?iframeSizedToWindow=true&:embed=y&:showAppBanner=false&:display_count=no&:showVizHome=no&:origin=viz_share_link">Project
Site</a>
</td>
</tr>
<tr>
<th scope="row">2nd - Visualization</th>
<td>DAT</td>
<td>Archit Kulkarni<br>Daniel Koceja<br>Tejas Pruthi<br>Ted Henson</td>
<td>
<a target="_blank"
href="https://data.world/bs22/carolinadatachallenge">Project
Site</a>
</td>
</tr>
<tr>
<th scope="row">1st - Outside Data</th>
<td>not-enough-caffeine</td>
<td>Wayne Ji<br>Edward Yand<br>Hui Sui<br>Ruiyan Song</td>
<td><a target="_blank"
href="https://drive.google.com/file/d/1doYZjHj9nLMhW5p7Tq4Ud8kfNBqzl1oW/view?usp=sharing">Project
Site</a><br>
</td>
</tr>
<tr>
<th scope="row">2nd - Outside Data</th>
<td>Cereal Killers</td>
<td>Angela Wang<br>David Liu<br>Dingyuan Liu<br>Joey Huang</td>
<td>
<a target="_blank"
href="https://data.world/weieon/not-enough-caffeine/workspace/data-dictionary">Project
Site</a>
</td>
</tr>
<tr>
<th scope="row">1st - Insight</th>
<td>Sorghum Saviors</td>
<td>Meghan Weber<br>Supreet<br>Taylor<br>Chris</td>
<td><a target="_blank"
href="https://data.world/meghan-weber/sorghum-saviors-cdc2019">Project
Site</a><br>
</td>
</tr>
<tr>
<th scope="row">2nd - Insight</th>
<td>Big Baller Analytics</td>
<td>Sahil<br>Tyler<br>George<br>Vibhu</td>
<td>
<a target="_blank"
href="https://data.world/v-ambil/big-baller-brand/workspace/file?filename=BBBpresentation">Project
Site</a>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane fade" id="pills-profile" role="tabpanel"
aria-labelledby="pills-profile-tab">
<table class="table">
<thead>
<tr>
<th scope="col">Place</th>
<th scope="col">Team Name</th>
<th scope="col">Team Members</th>
<th scope="col">Project Links</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1st - Best Insight</th>
<td>Big Baller Analytics</td>
<td>Vibhu Ambil<br>George Dimitrov<br>Sahil Patel<br>Tyler Youngberg</td>
<td><a target="_blank"
href="https://drive.google.com/file/d/1bYTzrMsozqJAHe1yr57YxfX9G6UvNu64/view?usp=sharing">Write
up</a><br>
<a target="_blank"
href="https://docs.google.com/presentation/d/1GtqWYuhvl69iIknB6HxDVG8GZOs9Ugstb1UE-l7zp08/edit?usp=sharing">Project
Site</a>
</td>
</tr>
<tr>
<th scope="row">2nd - Best Insight</th>
<td>Analytics Anonymous</td>
<td>Micheal Bono<br>James Bury<br>Evan Vitkus</td>
<td><a target="_blank"
href="https://drive.google.com/file/d/1CG02Fd0VmA0XwB_I8UGgDNr4KeKy0mJ6/view?usp=sharing">Write
up</a><br>
<a target="_blank" href="https://data.world/jamesb3/data-challenge">Project
Site</a>
</td>
</tr>
<tr>
<th scope="row">1st - Visualization</th>
<td>int elligent = us;</td>
<td>Surya Poddutoori<br>Jonah Soberano<br>Rahul Narvekar</td>
<td><a target="_blank"
href="https://drive.google.com/file/d/16s3HtKzNHpzc5kvbU59rXZroPq_j63W5/view?usp=sharing">Write
up</a><br>
<a target="_blank" href="https://rahul200023.wixsite.com/mysite">Project
Site</a>
</td>
</tr>
<tr>
<th scope="row">2nd - Visualization</th>
<td>Team Sam</td>
<td>Marc Rovner<br>Joshua Jiang<br>Bill Hansen<br>Ted Henson</td>
<td><a target="_blank"
href="https://drive.google.com/file/d/1PTFpB1DjRQ3T07FV55ZJQ5w7J9XQRKYM/view?usp=sharing">Write
up</a><br>
<a target="_blank"
href="https://drive.google.com/file/d/1oQcDgLltMQJAQ1QiL7IyFzSNzVWYJsTo/view?usp=sharing">Project
Site</a>
</td>
</tr>
<tr>
<th scope="row">1st - Outside Data</th>