-
Notifications
You must be signed in to change notification settings - Fork 282
/
index.html
executable file
·4748 lines (4019 loc) · 274 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 lang="en" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="utf-8">
<title>From data to Viz | Find the graphic you need</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="A classification of all possible chart types classified following the input data format.">
<meta name="keywords" content="Data,Dataviz,Datavisualization,Plot,Chart,Graph,R,Python,D3,Learning,Caveat,Pitfall,Mistake,Classification">
<meta name="author" content="Yan Holtz and Conor Healy">
<!-- Control appearance when share by social media -->
<meta property="og:title" content="From data to Viz | Find the graphic you need" />
<meta property="og:image" content="img/patchwork/datatoviz_overview7.png" />
<meta property="og:description" content="A classification of chart types based on their input data format." />
<meta property='og:url' content="data-to-viz.com" />
<meta property="og:type" content="website" />
<link rel="icon" href="img/logo/data-to-viz.ico">
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="css/agency.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img src="img/logo/typo.png" style="width:30%; vertical-align: top;">
</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#explore">Explore</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#story">Story</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#portfolio">All</a>
</li>
<li class="nav-item">
<a class="nav-link" href="caveats.html">Caveats</a>
</li>
<li class="nav-item">
<a class="nav-link" href="poster.html">Poster</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header class="masthead">
<div class="parallax">
<div class="container">
<div class="intro-text">
<img src="img/logo/tree-s.png" style="width:45%;height:45%;">
<br><br>
<div class="intro-lead-in">From Data to Viz leads you to the most appropriate graph for your data. It links to the code to build it and lists common caveats you should avoid.</div>
<div style="text-align:center">
<a class="btn btn-primary btn-xl text-uppercase js-scroll-trigger" href="#explore">Explore</a>
<a class="btn btn-primary btn-xl text-uppercase" data-toggle="modal" href="#poster_full">See poster</a>
</div>
</div>
</div>
<!-- Add iib image -->
<img src="img/IIB-awards-winner.png" width="200px" style="opacity: .7; position: absolute; top:0 ; left:0">
</div>
</header>
<!-- ======================= TREE SELECTION SECTION ======================= -->
<section id="explore" style="padding: 0px 0; padding-top: 100px;">
<div class="container">
<div class="row">
<div class="col-lg-2 text-center"></div>
<div class="col-lg-8 text-center">
<p>What kind of data do you have? Pick the main type using the buttons below. Then let the decision tree guide you toward your graphic possibilities. Alternatively, check the <a data-toggle="modal" href="#poster_full">complete decision tree</a>.</p>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<div id="tree-button-container">
<button class="btn btn-secondary active" onclick="showTree('num')" data-tree-section="num">Numeric</button>
<button class="btn btn-secondary" onclick="showTree('cat')" data-tree-section="cat">Categoric</button>
<button class="btn btn-secondary" onclick="showTree('catnum')" data-tree-section="catnum">Num & Cat</button>
<button class="btn btn-secondary" onclick="showTree('geo')" data-tree-section="geo">Maps</button>
<button class="btn btn-secondary" onclick="showTree('relationnal')" data-tree-section="relationnal">Network</button>
<button class="btn btn-secondary" onclick="showTree('time')" data-tree-section="time">Time series</button>
</div>
</div>
</div>
</div>
<br>
<!-- ======================================================================= -->
<!-- ==================== TREE SECTION ===================================== -->
<!-- NOTE TO GO FROM SVG TO THIS CODE -->
<!-- Change .st css classes to unique names -->
<!-- insert the tree in a div: <div id="num" class="tree" style="text-align:center;"> -->
<!-- replace the <svg> header with <svg version="1.1" id="Numeric_copy" width="80%" height="1433.858px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1508.3 1502.4" style="enable-background:new 0 0 1508.3 1502.4;" xml:space="preserve"> -->
<!-- change path to png images that compose the tree -->
<!-- add class="graphtypelogo" to every images to give them their CSS spec (get grey when hovered -->
<!-- make the png clickable: to do so, put <a data-toggle="modal" href="#treemap"></a> around it -->
<!-- update the modal links one by one.. -->
<!-- add the tooltip around Polygons: wrap polygon and text into <g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' title="<em>Your data look like</em><br> <img class='img-fluid' src='img/table/Nested_Data_Frame.png' alt=''><u>with</u> <b>HTML</b>"> -->
<!-- -->
<!-- Skip a line befor the trees -->
<!-- Numeric only -->
<div id="num" class="tree" style="text-align:center;">
<svg version="1.1" id="Numeric_copy" width="80%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1508.3 1502.4" style="enable-background:new 0 0 1508.3 1502.4;" xml:space="preserve">
<style type="text/css">
.numst0{fill:none;stroke:#808285;stroke-width:3;stroke-linecap:square;stroke-miterlimit:10;}
.numst1{font-family:'Lato-Regular';}
.numst2{font-size:13px; fill: black !important; stroke: none !important; }
.numst3{fill:#FFFFFF;stroke:#808285;stroke-width:3;stroke-linecap:square;stroke-miterlimit:10;}
.numst4{fill:#808285; font-size: 13px !important;}
.numst5{font-family:'OpenSans-Semibold';}
.numst6{font-size:14px;}
</style>
<g>
<line class="numst0" x1="1405.7" y1="312" x2="1405.7" y2="1355.8"/>
<text transform="matrix(1 0 0 1 1356.6582 871.4056)"><tspan x="0" y="0" class="numst1 numst2">RIDGE</tspan><tspan x="10.9" y="13" class="numst1 numst2">LINE</tspan></text>
<text transform="matrix(1 0 0 1 1352.0439 733.4965)"><tspan x="0" y="0" class="numst1 numst2">VIOLIN</tspan><tspan x="10.5" y="13" class="numst1 numst2">PLOT</tspan></text>
<text transform="matrix(1 0 0 1 1335.3188 595.5875)" class="numst1 numst2">BOXPLOT</text>
<text transform="matrix(1 0 0 1 1301.064 1423.0453)" class="numst1 numst2">DENDROGRAM</text>
<text transform="matrix(1 0 0 1 1332.5439 1285.1371)" class="numst1 numst2">HEATMAP</text>
<text transform="matrix(1 0 0 1 1369.8401 1009.316)" class="numst1 numst2">PCA</text>
<g data-toggle="tooltip" data-html="true" data-placement="right" offset='100 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>A dataset composed by many columns, all numeric</em><br><br><img width='695' height='267' class='img-fluid' src='img/table/SeveralNum.png' alt=''><br><br></div>">
<polygon class="numst3" points="1364,256.4 1405.7,232.3 1447.4,256.4 1447.4,304.6 1405.7,328.7 1364,304.6 "/>
<text transform="matrix(1 0 0 1 1390.7357 276.1355)"><tspan x="0" y="0" class="numst4 numst5 numst6">NOT</tspan><tspan x="-17.6" y="16.8" class="numst4 numst5 numst6">ORDERED</tspan></text>
</g>
<text transform="matrix(1 0 0 1 1296.4561 1147.2285)" class="numst1 numst2">CORRELOGRAM</text>
<path class="numst0" d="M1375.3,185.7h16.3c5.5,5.5,8.6,8.6,14.2,14.2v32.5"/>
<g>
<ellipse transform="matrix(0.9999 -1.596312e-02 1.596312e-02 0.9999 -19.2616 22.5944)" class="numst4" cx="1405.7" cy="1217.9" rx="52.4" ry="52.4"/>
<a data-toggle="modal" href="#heatmap"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/HeatmapSmall.png" transform="matrix(0.8522 0 0 0.8522 1357.1085 1169.2806)">
</a>
</g>
<g>
<circle class="numst4" cx="1405.7" cy="666.2" r="52.4"/>
<a data-toggle="modal" href="#violin"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ViolinSmall.png" transform="matrix(0.8522 0 0 0.8522 1357.1157 617.6404)">
</a>
</g>
<g>
<path class="numst4" d="M1458.1,528.3c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1458.1,499.3,1458.1,528.3z"/>
<a data-toggle="modal" href="#boxplot"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/Box1Small.png" transform="matrix(0.8522 0 0 0.8522 1357.1157 479.7304)">
</a>
</g>
<g>
<path class="numst4" d="M1458.1,1079.9c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1458.1,1051,1458.1,1079.9z"/>
<a data-toggle="modal" href="#correlogram"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/CorrelogramSmall.png" transform="matrix(0.8522 0 0 0.8522 1357.1157 1031.3707)">
</a>
</g>
<g>
<circle class="numst4" cx="1405.7" cy="1355.8" r="52.4"/>
<a data-toggle="modal" href="#dendrogram"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/DendrogramSmall.png" transform="matrix(0.8522 0 0 0.8522 1357.1157 1307.1903)">
</a>
</g>
<g>
<circle class="numst4" cx="1405.7" cy="804.1" r="52.4"/>
<a data-toggle="modal" href="#ridgeline"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/JoyplotSmall.png" transform="matrix(0.8522 0 0 0.8522 1357.1157 755.55)">
</a>
</g>
<g>
<circle class="numst4" cx="1405.7" cy="942" r="52.4"/>
<a data-toggle="modal" href="#pca"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/PCAsmall.png" transform="matrix(0.8522 0 0 0.8522 1357.1157 893.4603)">
</a>
</g>
</g>
<g>
<g data-toggle="tooltip" data-html="true" data-placement="bottom" offset='100 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>A dataset composed by many columns, all numeric. Data are ordered</em><br><br><img width='695' height='267' class='img-fluid' src='img/table/SeveralNumOrdered.png' alt=''><br><br></div>">
<polygon class="numst3" points="1219.6,256.4 1261.4,232.3 1303.1,256.4 1303.1,304.6 1261.4,328.7 1219.6,304.6 "/>
<text transform="matrix(1 0 0 1 1228.8063 284.5356)" class="numst4 numst5 numst6">ORDERED</text>
</g>
<path class="numst0" d="M1291.8,185.7h-16.3c-5.5,5.5-8.6,8.6-14.2,14.2v32.5"/>
<path class="numst0" d="M1219.6,304.6h-16.3c-5.5,5.5-8.6,8.6-14.2,14.2v37"/>
</g>
<g>
<polygon class="numst3" points="1291.8,137.5 1333.5,113.4 1375.3,137.5 1375.3,185.7 1333.5,209.8 1291.8,185.7 "/>
<text transform="matrix(1 0 0 1 1304.6089 157.1974)"><tspan x="0" y="0" class="numst4 numst5 numst6">SEVERAL</tspan><tspan x="-3.2" y="16.8" class="numst4 numst5 numst6">NUMERIC</tspan></text>
</g>
<g>
<text transform="matrix(1 0 0 1 1150.7378 871.4054)"><tspan x="0" y="0" class="numst1 numst2">LINE</tspan><tspan x="-4.8" y="13" class="numst1 numst2">PLOT</tspan></text>
<text transform="matrix(1 0 0 1 1145.2324 1009.3164)"><tspan x="0" y="0" class="numst1 numst2">AREA</tspan><tspan x="7.2" y="13" class="numst1 numst2">(SM)</tspan></text>
<text transform="matrix(1 0 0 1 1127.2334 733.4952)"><tspan x="0" y="0" class="numst1 numst2">STREAM</tspan><tspan x="7.1" y="13" class="numst1 numst2">GRAPH</tspan></text>
<text transform="matrix(1 0 0 1 1120.4048 595.587)"><tspan x="0" y="0" class="numst1 numst2">STACKED</tspan><tspan x="-10.9" y="13" class="numst1 numst2">AREA PLOT</tspan></text>
<path class="numst0" d="M1158.7,304.6h16.3c5.5,5.5,8.6,8.6,14.2,14.2V942"/>
<g>
<g data-toggle="tooltip" data-html="true" data-placement="bottom" offset='100 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>A dataset composed by 3 columns, all numeric. Data are ordered (see column 1 here)</em><br><br><img width='695' height='267' class='img-fluid' src='img/table/ThreeNumOrdered.png' alt=''><br><br></div>">
<polygon class="numst3" points="1075.3,256.4 1117,232.3 1158.7,256.4 1158.7,304.6 1117,328.7 1075.3,304.6 "/>
<text transform="matrix(1 0 0 1 1084.4702 284.5357)" class="numst4 numst5 numst6">ORDERED</text>
</g>
<path class="numst0" d="M1086.6,185.7h16.3c5.5,5.5,8.6,8.6,14.2,14.2v32.5"/>
</g>
<g>
<path class="numst4" d="M1241.6,528.3c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C1218.1,475.9,1241.6,499.3,1241.6,528.3z"/>
<a data-toggle="modal" href="#stackedarea"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/StackedAreaSmall.png" transform="matrix(0.8522 0 0 0.8522 1140.6111 479.7304)">
</a>
</g>
<g>
<path class="numst4" d="M1241.6,666.2c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C1218.1,613.8,1241.6,637.3,1241.6,666.2z"/>
<a data-toggle="modal" href="#streamgraph"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/StreamSmall.png" transform="matrix(0.8522 0 0 0.8522 1140.6111 617.6404)">
</a>
</g>
<g>
<path class="numst4" d="M1241.6,804.1c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C1218.1,751.7,1241.6,775.2,1241.6,804.1z"/>
<a data-toggle="modal" href="#line"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/LineSmall.png" transform="matrix(0.8522 0 0 0.8522 1140.6111 755.5505)">
</a>
</g>
<g>
<path class="numst4" d="M1241.6,942c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C1218.1,889.6,1241.6,913.1,1241.6,942z"/>
<a data-toggle="modal" href="#area"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/AreaSmall.png" transform="matrix(0.8522 0 0 0.8522 1140.6111 893.4613)">
</a>
</g>
</g>
<g>
<line class="numst0" x1="972.7" y1="307.7" x2="972.7" y2="942"/>
<text transform="matrix(1 0 0 1 913.0229 871.4054)"><tspan x="0" y="0" class="numst1 numst2">BUBBLE</tspan><tspan x="16.4" y="13" class="numst1 numst2">PLOT</tspan></text>
<text transform="matrix(1 0 0 1 885.6841 1009.316)"><tspan x="0" y="0" class="numst1 numst2">3D SCATTER</tspan><tspan x="-2.7" y="13" class="numst1 numst2">OR SURFACE</tspan></text>
<text transform="matrix(1 0 0 1 918.8921 733.4952)"><tspan x="0" y="0" class="numst1 numst2">VIOLIN</tspan><tspan x="10.5" y="13" class="numst1 numst2">PLOT</tspan></text>
<text transform="matrix(1 0 0 1 902.3071 595.587)" class="numst1 numst2">BOXPLOT</text>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='100 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>A dataset composed by 3 columns, all numeric.</em><br><br><img width='695' height='267' class='img-fluid' src='img/table/ThreeNum.png' alt=''><br><br></div>">
<polygon class="numst3" points="930.9,256.4 972.7,232.3 1014.4,256.4 1014.4,304.6 972.7,328.7 930.9,304.6 "/>
<text transform="matrix(1 0 0 1 957.7271 276.1364)"><tspan x="0" y="0" class="numst4 numst5 numst6">NOT</tspan><tspan x="-17.6" y="16.8" class="numst4 numst5 numst6">ORDERED</tspan></text>
</g>
<path class="numst0" d="M1003.1,185.7h-16.3c-5.5,5.5-8.6,8.6-14.2,14.2v32.5"/>
<g>
<path class="numst4" d="M1025.1,528.3c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C1001.6,475.9,1025.1,499.3,1025.1,528.3z"/>
<a data-toggle="modal" href="#boxplot"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/Box1Small.png" transform="matrix(0.8522 0 0 0.8522 924.1057 479.7304)">
</a>
</g>
<g>
<path class="numst4" d="M1025.1,666.2c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C1001.6,613.8,1025.1,637.3,1025.1,666.2z"/>
<a data-toggle="modal" href="#violin"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ViolinSmall.png" transform="matrix(0.8522 0 0 0.8522 924.1057 617.6404)">
</a>
</g>
<g>
<path class="numst4" d="M1025.1,804.1c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C1001.6,751.7,1025.1,775.2,1025.1,804.1z"/>
<a data-toggle="modal" href="#bubble"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/BubblePlotSmall.png" transform="matrix(0.8522 0 0 0.8522 924.1057 755.5505)">
</a>
</g>
<g>
<path class="numst4" d="M1025.1,942c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C1001.6,889.6,1025.1,913.1,1025.1,942z"/>
<a data-toggle="modal" href="#"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/3dRoundSmall.png" transform="matrix(0.8522 0 0 0.8522 924.1057 893.4613)">
</a>
</g>
</g>
<g>
<polygon class="numst3" points="1003.1,137.5 1044.8,113.4 1086.6,137.5 1086.6,185.7 1044.8,209.8 1003.1,185.7 "/>
<text transform="matrix(1 0 0 1 1023.3417 148.7982)"><tspan x="0" y="0" class="numst4 numst5 numst6">THREE</tspan><tspan x="-10.6" y="16.8" class="numst4 numst5 numst6">NUMERIC</tspan><tspan x="-14.9" y="33.6" class="numst4 numst5 numst6">VARIABLES</tspan></text>
</g>
<!-- 2 Numeric -->
<g>
<line class="numst0" x1="706.6" y1="307.7" x2="706.6" y2="814.3"/>
<text transform="matrix(1 0 0 1 662.6509 733.4961)"><tspan x="0" y="0" class="numst1 numst2">AREA</tspan><tspan x="0.7" y="13" class="numst1 numst2">PLOT</tspan></text>
<text transform="matrix(1 0 0 1 668.1562 871.4058)"><tspan x="0" y="0" class="numst1 numst2">LINE</tspan><tspan x="-4.8" y="13" class="numst1 numst2">PLOT</tspan></text>
<text transform="matrix(1 0 0 1 615.8408 595.5879)"><tspan x="0" y="0" class="numst1 numst2">CONNECTED</tspan><tspan x="-11.2" y="13" class="numst1 numst2">SCATTER PLOT</tspan></text>
<g data-toggle="tooltip" data-html="true" data-placement="bottom" offset='100 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>A dataset composed by 2 columns, all numeric. Data are ordered (see column 1)</em><br><br><img width='250' height='200' class='img-fluid' src='img/table/TwoNumOrdered.png' alt=''><br><br></div>">
<polygon class="numst3" points="664.9,256.4 706.6,232.3 748.3,256.4 748.3,304.6 706.6,328.7 664.9,304.6 "/>
<text transform="matrix(1 0 0 1 674.0579 284.5357)" class="numst4 numst5 numst6">ORDERED</text>
</g>
<g>
<path class="numst4" d="M759,804.1c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C735.6,751.7,759,775.2,759,804.1z"/>
<a data-toggle="modal" href="#line"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/LineSmall.png" transform="matrix(0.8522 0 0 0.8522 658.0298 755.55)">
</a>
</g>
<path class="numst0" d="M612.6,185.7h79.9c5.5,5.5,8.6,8.6,14.2,14.2v32.5"/>
<g>
<path class="numst4" d="M759,666.2c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C735.6,613.8,759,637.3,759,666.2z"/>
<a data-toggle="modal" href="#area"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/AreaSmall.png" transform="matrix(0.8522 0 0 0.8522 658.0308 617.6409)">
</a>
</g>
<g>
<path class="numst4" d="M759,528.3c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C735.6,475.9,759,499.3,759,528.3z"/>
<a data-toggle="modal" href="#connectedscatter"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ScatterConnectedSmall.png" transform="matrix(0.8522 0 0 0.8522 658.0308 479.731)">
</a>
</g>
</g>
<g>
<line class="numst0" x1="501.4" y1="431" x2="501.4" y2="942"/>
<text transform="matrix(1 0 0 1 447.7534 595.5883)"><tspan x="0" y="0" class="numst1 numst2">VIOLIN</tspan><tspan x="10.5" y="13" class="numst1 numst2">PLOT</tspan></text>
<text transform="matrix(1 0 0 1 437.0413 733.4962)"><tspan x="0" y="0" class="numst1 numst2">DENSITY</tspan><tspan x="21.2" y="13" class="numst1 numst2">PLOT</tspan></text>
<text transform="matrix(1 0 0 1 397.2679 871.4056)"><tspan x="0" y="0" class="numst1 numst2">SCATTER WITH</tspan><tspan x="-16.8" y="13" class="numst1 numst2">MARGINAL POINT</tspan></text>
<text transform="matrix(1 0 0 1 416.2869 1009.3162)"><tspan x="0" y="0" class="numst1 numst2">2D DENSITY</tspan><tspan x="42" y="13" class="numst1 numst2">PLOT</tspan></text>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='100 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>A dataset composed by 2 columns, all numeric. In this case we consider dataset with more than ~2000 data points approx.</em><br><br><img width='250' height='200' class='img-fluid' src='img/table/TwoNum.png' alt=''><br><br></div>">
<polygon class="numst3" points="459.7,379.1 501.4,355 543.1,379.1 543.1,427.3 501.4,451.4 459.7,427.3 "/>
<text transform="matrix(1 0 0 1 480.6847 398.8495)"><tspan x="0" y="0" class="numst4 numst5 numst6">MANY</tspan><tspan x="-4.5" y="16.8" class="numst4 numst5 numst6">POINTS</tspan></text>
</g>
<g>
<path class="numst4" d="M553.8,666.2c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C530.4,613.8,553.8,637.3,553.8,666.2z"/>
<a data-toggle="modal" href="#density"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/DensitySmall.png" transform="matrix(0.8522 0 0 0.8522 452.825 617.6411)">
</a>
</g>
<path class="numst0" d="M476.8,306.5h10.5c5.5,5.5,8.6,8.6,14.2,14.2V355"/>
<g>
<path class="numst4" d="M553.8,942c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C530.4,889.6,553.8,913.1,553.8,942z"/>
<a data-toggle="modal" href="#density2d"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/2dDensitySmall.png" transform="matrix(0.8522 0 0 0.8522 452.825 893.4613)">
</a>
</g>
<g>
<path class="numst4" d="M553.8,528.3c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C530.4,475.9,553.8,499.3,553.8,528.3z"/>
<a data-toggle="modal" href="#violin"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ViolinSmall.png" transform="matrix(0.8522 0 0 0.8522 452.825 479.731)">
</a>
</g>
<g>
<g>
<path class="numst4" d="M553.8,804.1c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C530.4,751.7,553.8,775.2,553.8,804.1z"/>
</g>
<a data-toggle="modal" href="#scatter"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/JointSmall.png" transform="matrix(0.8522 0 0 0.8522 452.825 755.5511)">
</a>
</g>
</g>
<g>
<line class="numst0" x1="368.7" y1="426.7" x2="368.7" y2="836.3"/>
<text transform="matrix(1 0 0 1 302.4385 871.4061)"><tspan x="0" y="0" class="numst1 numst2">SCATTER</tspan><tspan x="23" y="13" class="numst1 numst2">PLOT</tspan></text>
<text transform="matrix(1 0 0 1 280.7671 733.496)" class="numst1 numst2">HISTOGRAM</text>
<text transform="matrix(1 0 0 1 294.9795 595.5878)" class="numst1 numst2">BOX PLOT</text>
<g data-toggle="tooltip" data-html="true" data-placement="bottom" offset='100 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>A dataset composed by 2 columns, all numeric. In this case we consider dataset with less than ~2000 data points approx.</em><br><br><img width='250' height='200' class='img-fluid' src='img/table/TwoNum.png' alt=''><br><br></div>">
<polygon class="numst3" points="326.9,375.4 368.7,351.3 410.4,375.4 410.4,423.5 368.7,447.6 326.9,423.5 "/>
<text transform="matrix(1 0 0 1 354.4259 395.0734)"><tspan x="0" y="0" class="numst4 numst5 numst6">FEW</tspan><tspan x="-11" y="16.8" class="numst4 numst5 numst6">POINTS</tspan></text>
</g>
<g>
<path class="numst4" d="M421.1,666.2c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C397.6,613.8,421.1,637.3,421.1,666.2z"/>
<a data-toggle="modal" href="#histogram"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/HistogramSmall.png" transform="matrix(0.8522 0 0 0.8522 320.1048 617.641)">
</a>
</g>
<path class="numst0" d="M393.3,306.5h-10.5c-5.5,5.5-8.6,8.6-14.2,14.2v30.6"/>
<g>
<path class="numst4" d="M421.1,804.1c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C397.6,751.7,421.1,775.2,421.1,804.1z"/>
<a data-toggle="modal" href="#scatter"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ScatterPlotSmall.png" transform="matrix(0.8522 0 0 0.8522 320.1048 755.5511)">
</a>
</g>
<g>
<path class="numst4" d="M421.1,528.3c0,29-23.5,52.4-52.4,52.4c-29,0-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
C397.6,475.9,421.1,499.3,421.1,528.3z"/>
<a data-toggle="modal" href="#boxplot"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/Box1Small.png" transform="matrix(0.8522 0 0 0.8522 320.1048 479.731)">
</a>
</g>
</g>
<g>
<polygon class="numst3" points="393.3,258.3 435,234.2 476.8,258.3 476.8,306.5 435,330.6 393.3,306.5 "/>
<text transform="matrix(1 0 0 1 420.086 278.0233)"><tspan x="0" y="0" class="numst4 numst5 numst6">NOT</tspan><tspan x="-17.6" y="16.8" class="numst4 numst5 numst6">ORDERED</tspan></text>
<path class="numst0" d="M529.1,185.7h-79.9c-5.5,5.5-8.6,8.6-14.2,14.2l0,34.4"/>
</g>
<g>
<polygon class="numst3" points="529.1,137.5 570.8,113.4 612.6,137.5 612.6,185.7 570.8,209.8 529.1,185.7 "/>
<text transform="matrix(1 0 0 1 554.7292 148.7983)"><tspan x="0" y="0" class="numst4 numst5 numst6">TWO</tspan><tspan x="-16" y="16.8" class="numst4 numst5 numst6">NUMERIC</tspan><tspan x="-20.3" y="33.6" class="numst4 numst5 numst6">VARIABLES</tspan></text>
</g>
<!-- One Numeric -->
<g>
<line class="numst0" x1="102.6" y1="193.1" x2="102.6" y2="666.2"/>
<g>
<circle class="numst4" cx="102.6" cy="666.2" r="52.4"/>
<a data-toggle="modal" href="#density"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/DensitySmall.png" transform="matrix(0.8522 0 0 0.8522 54.0231 617.6336)">
</a>
</g>
<g>
<path class="numst4" d="M155,528.3c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4S155,499.3,155,528.3z"/>
<a data-toggle="modal" href="#histogram"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/HistogramSmall.png" transform="matrix(0.8522 0 0 0.8522 54.0266 479.7274)">
</a>
</g>
<text transform="matrix(1 0 0 1 38.105 733.4967)"><tspan x="0" y="0" class="numst1 numst2">DENSITY</tspan><tspan x="21.2" y="13" class="numst1 numst2">PLOT</tspan></text>
<text transform="matrix(1 0 0 1 14.8321 595.5875)" class="numst1 numst2">HISTOGRAM</text>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>Very simple dataset with only one column composed by numbers</em><br><br><img width='150' height='250' class='img-fluid' src='img/table/OneNum.png' alt=''><br><br></div>">
<polygon class="numst3" points="60.9,137.5 102.6,113.4 144.3,137.5 144.3,185.7 102.6,209.8 60.9,185.7 "/>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="0" y="0" class="numst4 numst5 numst6">ONE</tspan><tspan x="-17.2" y="16.8" class="numst4 numst5 numst6">NUMERIC</tspan><tspan x="-17.6" y="33.6" class="numst4 numst5 numst6">VARIABLE</tspan></text>
</g>
</g>
<g>
<path class="numst0" d="M1333.5,113.4V70.9c-5.5-5.5-8.6-8.6-14.2-14.2H116.8c-5.5,5.5-8.6,8.6-14.2,14.2v42.5"/>
<line class="numst0" x1="570.8" y1="113.4" x2="570.8" y2="56.7"/>
<line class="numst0" x1="1044.8" y1="113.4" x2="1044.8" y2="56.7"/>
<line class="numst0" x1="754.1" y1="56.7" x2="754.1" y2="0"/>
</g>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="-15" y="640"><a class="mystory" xlink:href="story/OneNum.html">Story</a></tspan></text>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="225" y="800"><a class="mystory" xlink:href="story/TwoNum.html">Story</a></tspan></text>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="375" y="920"><a class="mystory" xlink:href="story/TwoNum.html">Story</a></tspan></text>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="565" y="800"><a class="mystory" xlink:href="story/TwoNumOrdered.html">Story</a></tspan></text>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="830" y="920"><a class="mystory" xlink:href="story/ThreeNum.html">Story</a></tspan></text>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="1050" y="920"><a class="mystory" xlink:href="story/OneCatSevOrderedNum.html">Story</a></tspan></text>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="1270" y="1340"><a class="mystory" xlink:href="story/SeveralNum.html">Story</a></tspan></text>
</div>
<!-- Categoric only -->
<div id="cat" class="tree" style="text-align:center;">
<svg version="1.1" id="Numeric_copy" width="80%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1508.3 1582.4" style="enable-background:new 0 0 1508.3 1502.4;" xml:space="preserve">
<style type="text/css">
.catst0{fill:none;stroke:#808285;stroke-width:3;stroke-linecap:square;stroke-miterlimit:10;}
.catst1{fill:#808285;}
.catst2{fill:#FFFFFF;stroke:#808285;stroke-width:3;stroke-linecap:square;stroke-miterlimit:10;}
.catst3{fill:none;stroke:#808285;stroke-width:3;stroke-miterlimit:10;}
.catst4{font-family:'Lato-Regular';}
.catst5{font-size:13px;}
.catst6{font-family:'OpenSans-Semibold';}
.catst7{font-size:14px;}
.catst8{font-size:11px;}
</style>
<g id="Geo">
</g>
<g id="Time">
</g>
<g id="Categorical">
<g>
<line class="catst0" x1="1271.1" y1="330.6" x2="1271.1" y2="1079.9"/>
<text transform="matrix(1 0 0 1 1197.7676 1147.23)" class="catst4 catst5">HEATMAP</text>
<g>
<path class="catst1" d="M1323.5,1079.9c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1323.5,1051,1323.5,1079.9z"/>
<a data-toggle="modal" href="#heatmap"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/HeatmapSmall.png" transform="matrix(0.8522 0 0 0.8522 1222.5334 1031.3705)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1210.5403 1009.3174)" class="catst4 catst5">SANKEY</text>
<g>
<circle class="catst1" cx="1271.1" cy="942" r="52.4"/>
<a data-toggle="modal" href="#sankey"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/SankeySmall.png" transform="matrix(0.8522 0 0 0.8522 1222.5327 893.4599)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1235.1226 871.4072)" class="catst4 catst5">ARC</text>
<g>
<circle class="catst1" cx="1271.1" cy="804.1" r="52.4"/>
<a data-toggle="modal" href="#arc"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ArcSmal.png" transform="matrix(0.8522 0 0 0.8522 1222.5334 755.5505)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1213.5039 733.498)" class="catst4 catst5">CHORD</text>
<g>
<circle class="catst1" cx="1271.1" cy="666.2" r="52.4"/>
<a data-toggle="modal" href="#chord"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ChordSmall.png" transform="matrix(0.8522 0 0 0.8522 1222.5334 617.6403)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1194.8169 595.5889)" class="catst4 catst5">NETWORK</text>
<g>
<path class="catst1" d="M1323.5,528.3c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1323.5,499.3,1323.5,528.3z"/>
<a data-toggle="modal" href="#network"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/NetworkSmall.png" transform="matrix(0.8522 0 0 0.8522 1222.533 479.7299)">
</image></a>
</g>
<g>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>Two independent lists</em><br><br><img width='250' height='250' class='img-fluid' src='img/table/AdjacencyNoEdgeValue.png' alt=''><br><br></div>">
<polygon class="catst2" points="1229.4,258.3 1271.1,234.2 1312.8,258.3 1312.8,306.5 1271.1,330.6 1229.4,306.5 "/>
<text transform="matrix(1 0 0 1 1234.9928 286.1364)" class="catst1 catst6 catst5">ADJACENCY</text>
</g>
</g>
<path class="catst0" d="M1096.3,185.7h160.6c5.5,5.5,8.6,8.6,14.2,14.2v32.5"/>
</g>
<g>
<line class="catst0" x1="1126.8" y1="330.6" x2="1126.8" y2="1461.8"/>
<text transform="matrix(1 0 0 1 1067.2417 1560.9492)"><tspan x="0" y="0" class="catst4 catst5">SANKEY</tspan><tspan x="-10.8" y="13" class="catst4 catst5">DIAGRAM</tspan></text>
<g>
<circle class="catst1" cx="1126.8" cy="1493.7" r="52.4"/>
<a data-toggle="modal" href="#sankey"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/SankeySmall.png" transform="matrix(0.8522 0 0 0.8522 1078.1964 1445.1003)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1072.3779 1423.0479)"><tspan x="0" y="0" class="catst4 catst5">SPIDER</tspan><tspan x="11.5" y="13" class="catst4 catst5">PLOT</tspan></text>
<g>
<circle class="catst1" cx="1126.8" cy="1355.8" r="52.4"/>
<a data-toggle="modal" href="#spider"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/SpiderSmall.png" transform="matrix(0.8522 0 0 0.8522 1078.1971 1307.1903)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1055.1279 1285.1382)"><tspan x="0" y="0" class="catst4 catst5">PARALLEL</tspan><tspan x="28.5" y="13" class="catst4 catst5">PLOT</tspan></text>
<g>
<ellipse transform="matrix(0.9999 -1.596312e-02 1.596312e-02 0.9999 -19.2972 18.1419)" class="catst1" cx="1126.8" cy="1217.9" rx="52.4" ry="52.4"/>
<a data-toggle="modal" href="#parallel"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/Parallel1Small.png" transform="matrix(0.8522 0 0 0.8522 1078.1971 1169.2803)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1057.7983 1147.23)"><tspan x="0" y="0" class="catst4 catst5">STACKED</tspan><tspan x="0.3" y="13" class="catst4 catst5">BARPLOT</tspan></text>
<g>
<path class="catst1" d="M1179.2,1079.9c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1179.2,1051,1179.2,1079.9z"/>
<a data-toggle="modal" href="#barplot"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/StackedSmall.png" transform="matrix(0.8522 0 0 0.8522 1078.1971 1031.3704)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1053.4053 1009.3174)"><tspan x="0" y="0" class="catst4 catst5">GROUPED</tspan><tspan x="4.9" y="13" class="catst4 catst5">BARPLOT</tspan></text>
<g>
<circle class="catst1" cx="1126.8" cy="942" r="52.4"/>
<a data-toggle="modal" href="#barplot"><image class="graphtypelogo" style="overflow:visible;" width="472" height="472" xlink:href="img/section/GroupedRedBig.png" transform="matrix(0.2058 0 0 0.2058 1078.1971 893.4603)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1056.3232 871.4072)" class="catst4 catst5">LOLLIPOP</text>
<g>
<circle class="catst1" cx="1126.8" cy="804.1" r="52.4"/>
<a data-toggle="modal" href="#lollipop"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/LollipopSmall.png" transform="matrix(0.8522 0 0 0.8522 1078.1971 755.5504)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1053.626 733.498)" class="catst4 catst5">HEATMAP</text>
<g>
<circle class="catst1" cx="1126.8" cy="666.2" r="52.4"/>
<a data-toggle="modal" href="#heatmap"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/HeatmapSmall.png" transform="matrix(0.8522 0 0 0.8522 1078.1971 617.6404)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1053.4053 595.5889)"><tspan x="0" y="0" class="catst4 catst5">GROUPED</tspan><tspan x="7.3" y="13" class="catst4 catst5">SCATTER</tspan></text>
<g>
<path class="catst1" d="M1179.2,528.3c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1179.2,499.3,1179.2,528.3z"/>
<a data-toggle="modal" href="#scatter"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ScatterGroupSmall.png" transform="matrix(0.8522 0 0 0.8522 1078.1971 479.7304)">
</image></a>
</g>
<g>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>Two categoric variable organized in subgroups. It means that every combination of both variable is possible. Example: each people observed is a male or female (var 1), and </em><br><br><img width='250' height='250' class='img-fluid' src='img/table/TwoCatSubgroup.png' alt=''><br><br></div>">
<polygon class="catst2" points="1085,258.3 1126.8,234.2 1168.5,258.3 1168.5,306.5 1126.8,330.6 1085,306.5 "/>
<text transform="matrix(1 0 0 1 1088.5372 286.4232)" class="catst1 catst6 catst7">SUBGROUP</text>
</g>
</g>
<path class="catst0" d="M1126.8,232.3v-8.4c-5.5-5.5-8.6-8.6-14.2-14.2h-58"/>
</g>
<g>
<line class="catst0" x1="982.4" y1="330.6" x2="982.4" y2="1079.9"/>
<text transform="matrix(1 0 0 1 877.4136 1147.23)" class="catst4 catst5">DENDROGRAM</text>
<g>
<path class="catst1" d="M1034.9,1079.9c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1034.9,1051,1034.9,1079.9z"/>
<a data-toggle="modal" href="#dendrogram"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/DendrogramSmall.png" transform="matrix(0.8522 0 0 0.8522 933.8591 1031.3691)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 913.9634 1009.3174)" class="catst4 catst5">BARPLOT</text>
<g>
<circle class="catst1" cx="982.4" cy="942" r="52.4"/>
<a data-toggle="modal" href="#barplot"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/BarSmall.png" transform="matrix(0.8522 0 0 0.8522 933.8605 893.4606)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 904.7007 871.4072)" class="catst4 catst5">SUNBURST</text>
<g>
<circle class="catst1" cx="982.4" cy="804.1" r="52.4"/>
<a data-toggle="modal" href="#sunburst"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/SunburstSmall.png" transform="matrix(0.8522 0 0 0.8522 933.8591 755.549)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 909.5435 733.498)"><tspan x="0" y="0" class="catst4 catst5">CIRCULAR</tspan><tspan x="5.4" y="13" class="catst4 catst5">PACKING</tspan></text>
<g>
<circle class="catst1" cx="982.4" cy="666.2" r="52.4"/>
<a data-toggle="modal" href="#circularpacking"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/CircularPackingSmall.png" transform="matrix(0.8522 0 0 0.8522 933.8605 617.6403)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 912.3643 595.5889)" class="catst4 catst5">TREEMAP</text>
<g>
<path class="catst1" d="M1034.9,528.3c0,29-23.5,52.4-52.4,52.4S930,557.3,930,528.3c0-29,23.5-52.4,52.4-52.4
S1034.9,499.3,1034.9,528.3z"/>
<a data-toggle="modal" href="#treemap"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/TreeSmall.png" transform="matrix(0.8522 0 0 0.8522 933.8605 479.7304)">
</image></a>
</g>
<g>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>The second cat. variable is nested in the first one. Each entity is separately identifiable but also part of a larger data organization. Example: World > Europe > Ireland > Dublin.</em><br><br><img width='250' height='250' class='img-fluid' src='img/table/TwoCatNested.png' alt=''><br><br></div>">
<polygon class="catst2" points="940.7,258.3 982.4,234.2 1024.2,258.3 1024.2,306.5 982.4,330.6 940.7,306.5 "/>
<text transform="matrix(1 0 0 1 956.1902 286.4235)" class="catst1 catst6 catst7">NESTED</text>
</g>
</g>
<path class="catst0" d="M1054.6,209.8h-58c-5.5,5.5-8.6,8.6-14.2,14.2v8.4"/>
</g>
<g>
<line class="catst0" x1="838.1" y1="330.6" x2="838.1" y2="528.3"/>
<text transform="matrix(1 0 0 1 791.3831 595.5889)"><tspan x="0" y="0" class="catst4 catst5">VENN</tspan><tspan x="-24.7" y="13" class="catst4 catst5">DIAGRAM</tspan></text>
<g>
<path class="catst1" d="M890.5,528.3c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S890.5,499.3,890.5,528.3z"/>
<a data-toggle="modal" href="#venn"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/VennSmall.png" transform="matrix(0.8522 0 0 0.8522 789.5245 479.7304)">
</image></a>
</g>
<g>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>Two independent lists. Example: list of people playing football, and other of people playing ping pong. The usual goal is to represent the intersection between both lists.</em><br><br><img width='250' height='250' class='img-fluid' src='img/table/TwoIndepList.png' alt=''><br><br></div>">
<polygon class="catst2" points="796.4,258.3 838.1,234.2 879.8,258.3 879.8,306.5 838.1,330.6 796.4,306.5 "/>
<text transform="matrix(1 0 0 1 822.0057 269.6237)"><tspan x="0" y="0" class="catst1 catst6 catst7">TWO</tspan><tspan x="-22.9" y="15.8" class="catst1 catst6 catst8">INDEPENDENT</tspan><tspan x="-1.5" y="33.6" class="catst1 catst6 catst7">LISTS</tspan></text>
</g>
</g>
<path class="catst0" d="M1012.9,185.7H852.3c-5.5,5.5-8.6,8.6-14.2,14.2v32.5"/>
</g>
<g>
<polygon class="catst2" points="1012.9,137.5 1054.6,113.4 1096.3,137.5 1096.3,185.7 1054.6,209.8 1012.9,185.7 "/>
<text transform="matrix(1 0 0 1 1026.7068 148.7982)"><tspan x="0" y="0" class="catst1 catst6 catst7">TWO OR</tspan><tspan x="-9.2" y="16.8" class="catst1 catst6 catst7">MORE CAT.</tspan><tspan x="-8.5" y="33.6" class="catst1 catst6 catst7">VARIABLES</tspan></text>
</g>
<g>
<line class="catst0" x1="303.4" y1="209.9" x2="303.4" y2="1461.8"/>
<text transform="matrix(1 0 0 1 231.5703 1560.9492)"><tspan x="0" y="0" class="catst4 catst5">CIRCULAR</tspan><tspan x="5.4" y="13" class="catst4 catst5">PACKING</tspan></text>
<g>
<circle class="catst1" cx="303.4" cy="1493.7" r="52.4"/>
<a data-toggle="modal" href="#circularpacking"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/CircularPackingSmall.png" transform="matrix(0.8522 0 0 0.8522 254.8492 1445.1011)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 233.5542 1423.0479)" class="catst4 catst5">TREEMAP</text>
<g>
<circle class="catst1" cx="303.4" cy="1355.8" r="52.4"/>
<a data-toggle="modal" href="#treemap"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/TreeSmall.png" transform="matrix(0.8522 0 0 0.8522 254.8492 1307.1908)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 273.9126 1285.1382)" class="catst4 catst5">PIE</text>
<g>
<ellipse transform="matrix(0.9999 -1.596312e-02 1.596312e-02 0.9999 -19.4021 4.9987)" class="catst1" cx="303.4" cy="1217.9" rx="52.4" ry="52.4"/>
<a data-toggle="modal" href="#pie"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/PieSmall.png" transform="matrix(0.8522 0 0 0.8522 254.8492 1169.2806)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 216.2319 1147.23)" class="catst4 catst5">DOUGHNUT</text>
<g>
<path class="catst1" d="M355.9,1079.9c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S355.9,1051,355.9,1079.9z"/>
<a data-toggle="modal" href="#donut"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/DougnutSmall.png" transform="matrix(0.8522 0 0 0.8522 254.8492 1031.3705)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 250.9675 1009.3174)"><tspan x="0" y="0" class="catst4 catst5">WORD</tspan><tspan x="-3.3" y="13" class="catst4 catst5">CLOUD</tspan></text>
<g>
<circle class="catst1" cx="303.4" cy="942" r="52.4"/>
<a data-toggle="modal" href="#wordcloud"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/WordCloudSmall.png" transform="matrix(0.8522 0 0 0.8522 254.8492 893.4606)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 241.9199 871.4072)" class="catst4 catst5">WAFFLE</text>
<g>
<circle class="catst1" cx="303.4" cy="804.1" r="52.4"/>
<a data-toggle="modal" href="#heatmap"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/HeatmapSmall.png" transform="matrix(0.8522 0 0 0.8522 254.8492 755.5505)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 232.7749 733.498)" class="catst4 catst5">LOLLIPOP</text>
<g>
<circle class="catst1" cx="303.4" cy="666.2" r="52.4"/>
<a data-toggle="modal" href="#lollipop"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/LollipopSmall.png" transform="matrix(0.8522 0 0 0.8522 254.8492 617.6403)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 234.9516 595.5889)" class="catst4 catst5">BARPLOT</text>
<g>
<path class="catst1" d="M355.9,528.3c0,29-23.5,52.4-52.4,52.4S251,557.3,251,528.3c0-29,23.5-52.4,52.4-52.4
S355.9,499.3,355.9,528.3z"/>
<a data-toggle="modal" href="#barplot"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/BarSmall.png" transform="matrix(0.8522 0 0 0.8522 254.8492 479.7304)">
</image></a>
</g>
<g>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>Very simple dataset with only one categoric variable</em><br><br><img width='120' height='200' class='img-fluid' src='img/table/OneCat.png' alt=''><br><br></div>">
<polygon class="catst2" points="261.7,137.5 303.4,113.4 345.2,137.5 345.2,185.7 303.4,209.8 261.7,185.7 "/>
<text transform="matrix(1 0 0 1 288.5234 148.7982)"><tspan x="0" y="0" class="catst1 catst6 catst7">ONE</tspan><tspan x="-22" y="15.8" class="catst1 catst6 catst8">CATEGORICAL</tspan><tspan x="-21.5" y="33.6" class="catst1 catst6 catst7">VARIABLES</tspan></text>
</g>
</g>
</g>
<g>
<path class="catst0" d="M1054.6,113.4V70.9c-5.5-5.5-8.6-8.6-14.2-14.2H317.6c-5.5,5.5-8.6,8.6-14.2,14.2v42.5"/>
<line class="catst3" x1="751.2" y1="56.7" x2="751.2" y2="0"/>
</g>
</g>
<g id="Cat_And_Num">
</g>
<g id="Relational">
</g>
<g id="Numeric_copy">
</g>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="264" y="1360"><a class="mystory" xlink:href="story/OneNumOneCat.html">Story</a></tspan></text>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="705" y="520"><a class="mystory" xlink:href="story/SeveralIndepLists.html">Story</a></tspan></text>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="850" y="1050"><a class="mystory" xlink:href="story/SevCatOneNumNestedOneObsPerGroup.html">Story</a></tspan></text>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="1090" y="1360"><a class="mystory" xlink:href="story/OneNumSevCatSubgroupOneObsPerGroup.html">Story</a></tspan></text>
<text transform="matrix(0.9999 -1.224000e-02 1.224000e-02 0.9999 87.5505 148.9814)"><tspan x="1155" y="1050"><a class="mystory" xlink:href="story/AdjacencyMatrix.html">Story</a></tspan></text>
</svg>
</div>
<!-- Numeric and cat -->
<div id="catnum" class="tree" style="text-align:center;">
<svg version="1.1" id="Numeric_copy" width="80%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1508.3 1582.4" style="enable-background:new 0 0 1508.3 1502.4;" xml:space="preserve">
<style type="text/css">
.catnumst0{fill:none;stroke:#808285;stroke-width:3;stroke-linecap:square;stroke-miterlimit:10;}
.catnumst1{fill:#808285;}
.st2{fill:#FFFFFF;stroke:#808285;stroke-width:3;stroke-linecap:square;stroke-miterlimit:10;}
.catnumst3{fill:none;stroke:#808285;stroke-width:3;stroke-miterlimit:10;}
.catnumst4{font-family:'Lato-Regular';}
.catnumst5{font-size:13px;}
.catnumst6{font-family:'OpenSans-Semibold';}
.catnumst7{font-size:14px;}
</style>
<g id="Geo">
</g>
<g id="Time">
</g>
<g id="Categorical">
</g>
<g id="Cat_And_Num">
<g>
<line class="catnumst0" x1="1412.9" y1="330.6" x2="1412.9" y2="1079.9"/>
<text transform="matrix(1 0 0 1 1339.599 1147.23)" class="catnumst4 catnumst5">HEATMAP</text>
<g>
<path class="catnumst1" d="M1465.4,1079.9c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1465.4,1051,1465.4,1079.9z"/>
<a data-toggle="modal" href="#heatmap"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/HeatmapSmall.png" transform="matrix(0.8522 0 0 0.8522 1364.3644 1031.3705)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1352.3705 1009.3174)" class="catnumst4 catnumst5">SANKEY</text>
<g>
<circle class="catnumst1" cx="1412.9" cy="942" r="52.4"/>
<a data-toggle="modal" href="#sankey"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/SankeySmall.png" transform="matrix(0.8522 0 0 0.8522 1364.3636 893.4599)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1376.9535 871.4072)" class="catnumst4 catnumst5">ARC</text>
<g>
<circle class="catnumst1" cx="1412.9" cy="804.1" r="52.4"/>
<a data-toggle="modal" href="#arc"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ArcSmal.png" transform="matrix(0.8522 0 0 0.8522 1364.3644 755.5505)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1355.3348 733.498)" class="catnumst4 catnumst5">CHORD</text>
<g>
<circle class="catnumst1" cx="1412.9" cy="666.2" r="52.4"/>
<a data-toggle="modal" href="#chord"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ChordSmall.png" transform="matrix(0.8522 0 0 0.8522 1364.3644 617.6403)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1336.6471 595.5889)" class="catnumst4 catnumst5">NETWORK</text>
<g>
<path class="catnumst1" d="M1465.4,528.3c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1465.4,499.3,1465.4,528.3z"/>
<a data-toggle="modal" href="#network"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/NetworkSmall.png" transform="matrix(0.8522 0 0 0.8522 1364.3639 479.7299)">
</image></a>
</g>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>A rectangular matrix that gives the relationship between each pair of sample.</em><br><br><img width='380' height='700' class='img-fluid' src='img/table/AdjacencySquare.png' alt=''><br><br></div>">
<polygon class="st2" points="1371.2,258.3 1412.9,234.2 1454.7,258.3 1454.7,306.5 1412.9,330.6 1371.2,306.5 "/>
<text transform="matrix(1 0 0 1 1376.8256 286.1364)" class="catnumst1 catnumst6 catnumst5">ADJACENCY</text>
</g>
<path class="catnumst0" d="M1234.1,185.7h164.7c5.5,5.5,8.6,8.6,14.2,14.2v34.4"/>
</g>
<g>
<line class="catnumst0" x1="1257.9" y1="451.4" x2="1257.9" y2="666.2"/>
<text transform="matrix(1 0 0 1 1204.2867 733.498)" class="catnumst4 catnumst5">VIOLIN</text>
<g>
<circle class="catnumst1" cx="1257.9" cy="666.2" r="52.4"/>
<a data-toggle="modal" href="#violin"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ViolinSmall.png" transform="matrix(0.8522 0 0 0.8522 1209.3574 617.6403)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1187.5616 595.5889)" class="catnumst4 catnumst5">BOXPLOT</text>
<g>
<path class="catnumst1" d="M1310.4,528.3c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1310.4,499.3,1310.4,528.3z"/>
<a data-toggle="modal" href="#boxplot"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/Box1Small.png" transform="matrix(0.8522 0 0 0.8522 1209.3574 479.7304)">
</image></a>
</g>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>Categoric variables provide information of the hierarchy. Several values are available for each leaf.</em><br><br><img width='280' height='500' class='img-fluid' src='img/table/OneNumSevCatNestedSevObsPerGroup.png' alt=''><br><br></div>">
<polygon class="st2" points="1216.2,379.1 1257.9,355 1299.7,379.1 1299.7,427.3 1257.9,451.4 1216.2,427.3 "/>
<text transform="matrix(1 0 0 1 1229.0183 390.4491)"><tspan x="0" y="0" class="catnumst1 catnumst6 catnumst7">SEVERAL</tspan><tspan x="-1.5" y="16.8" class="catnumst1 catnumst6 catnumst7">OBS. PER</tspan><tspan x="4.3" y="33.6" class="catnumst1 catnumst6 catnumst7">GROUP</tspan></text>
</g>
<path class="catnumst0" d="M1234.1,306.5h9.7c5.5,5.5,8.6,8.6,14.2,14.2V355"/>
</g>
<g>
<line class="catnumst0" x1="1126.8" y1="451.4" x2="1126.8" y2="1073.9"/>
<text transform="matrix(1 0 0 1 1053.6864 1147.23)"><tspan x="0" y="0" class="catnumst4 catnumst5">CIRCULAR</tspan><tspan x="5.4" y="13" class="catnumst4 catnumst5">PACKING</tspan></text>
<g>
<path class="catnumst1" d="M1179.2,1079.9c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1179.2,1051,1179.2,1079.9z"/>
<a data-toggle="modal" href="#circularpacking"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/CircularPackingSmall.png" transform="matrix(0.8522 0 0 0.8522 1078.1982 1031.3705)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1056.7013 1009.3174)" class="catnumst4 catnumst5">TREEMAP</text>
<g>
<circle class="catnumst1" cx="1126.8" cy="942" r="52.4"/>
<a data-toggle="modal" href="#treemap"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/TreeSmall.png" transform="matrix(0.8522 0 0 0.8522 1078.1982 893.4606)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1056.0907 871.4072)" class="catnumst4 catnumst5">SUNBURST</text>
<g>
<circle class="catnumst1" cx="1126.8" cy="804.1" r="52.4"/>
<a data-toggle="modal" href="#sunburst"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/SunburstSmall.png" transform="matrix(0.8522 0 0 0.8522 1078.1968 755.549)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1021.9467 733.498)" class="catnumst4 catnumst5">DENDROGRAM</text>
<g>
<circle class="catnumst1" cx="1126.8" cy="666.2" r="52.4"/>
<a data-toggle="modal" href="#dendrogram"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/DendrogramSmall.png" transform="matrix(0.8522 0 0 0.8522 1078.1968 617.6389)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 1058.3004 595.5889)" class="catnumst4 catnumst5">BARPLOT</text>
<g>
<path class="catnumst1" d="M1179.2,528.3c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1179.2,499.3,1179.2,528.3z"/>
<a data-toggle="modal" href="#barplot"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/BarSmall.png" transform="matrix(0.8522 0 0 0.8522 1078.1982 479.7304)">
</image></a>
</g>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>Categoric variables provide information of the hierarchy. One value only for each leaf.</em><br><br><img width='280' height='500' class='img-fluid' src='img/table/OneNumSevCatNestedOneObsPerGroup.png' alt=''><br><br></div>">
<polygon class="st2" points="1085,379.1 1126.8,355 1168.5,379.1 1168.5,427.3 1126.8,451.4 1085,427.3 "/>
<text transform="matrix(1 0 0 1 1111.8727 390.4493)"><tspan x="0" y="0" class="catnumst1 catnumst6 catnumst7">ONE</tspan><tspan x="-15.5" y="16.8" class="catnumst1 catnumst6 catnumst7">OBS. PER</tspan><tspan x="-9.7" y="33.6" class="catnumst1 catnumst6 catnumst7">GROUP</tspan></text>
</g>
<path class="catnumst0" d="M1150.6,306.5h-9.7c-5.5,5.5-8.6,8.6-14.2,14.2V355"/>
</g>
<g>
<g>
<polygon class="st2" points="1150.6,258.3 1192.4,234.2 1234.1,258.3 1234.1,306.5 1192.4,330.6 1150.6,306.5 "/>
<text transform="matrix(1 0 0 1 1166.1084 286.4235)" class="catnumst1 catnumst6 catnumst7">NESTED</text>
</g>
<line class="catnumst0" x1="1192.4" y1="234.2" x2="1192.4" y2="209.8"/>
</g>
<g>
<line class="catnumst0" x1="971.8" y1="451.4" x2="971.8" y2="666.2"/>
<text transform="matrix(1 0 0 1 918.122 733.498)" class="catnumst4 catnumst5">VIOLIN</text>
<g>
<circle class="catnumst1" cx="971.8" cy="666.2" r="52.4"/>
<a data-toggle="modal" href="#violin"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/ViolinSmall.png" transform="matrix(0.8522 0 0 0.8522 923.1929 617.6403)">
</image></a>
</g>
<text transform="matrix(1 0 0 1 901.3969 595.5889)" class="catnumst4 catnumst5">BOXPLOT</text>
<g>
<path class="catnumst1" d="M1024.2,528.3c0,29-23.5,52.4-52.4,52.4s-52.4-23.5-52.4-52.4c0-29,23.5-52.4,52.4-52.4
S1024.2,499.3,1024.2,528.3z"/>
<a data-toggle="modal" href="#boxplot"><image class="graphtypelogo" style="overflow:visible;" width="114" height="114" xlink:href="img/section/Box1Small.png" transform="matrix(0.8522 0 0 0.8522 923.1929 479.7304)">
</image></a>
</g>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>Categoric variables provide several ways to group samples. For each combination of groups, several observation are available.</em><br><br><img width='280' height='500' class='img-fluid' src='img/table/OneNumSevCatSubgroupSevObsPerGroup.png' alt=''><br><br></div>">
<polygon class="st2" points="930,379.1 971.8,355 1013.5,379.1 1013.5,427.3 971.8,451.4 930,427.3 "/>
<text transform="matrix(1 0 0 1 942.8537 390.4491)"><tspan x="0" y="0" class="catnumst1 catnumst6 catnumst7">SEVERAL</tspan><tspan x="-1.5" y="16.8" class="catnumst1 catnumst6 catnumst7">OBS. PER</tspan><tspan x="4.3" y="33.6" class="catnumst1 catnumst6 catnumst7">GROUP</tspan></text>
</g>
<path class="catnumst0" d="M947.9,306.5h9.7c5.5,5.5,8.6,8.6,14.2,14.2V355"/>
</g>
<g>
<g data-toggle="tooltip" data-html="true" data-placement="left" offset='10 - 5vh + 3%' class="data-tooltip" style="color: #f00;" title="<div class='data-tooltip'><br><em>Categoric variables provide several ways to group samples. For each combination of groups, one observation is available only.</em><br><br><img width='280' height='500' class='img-fluid' src='img/table/OneNumSevCatSubgroupOneObsPerGroup.png' alt=''><br><br></div>">
<polygon class="st2" points="798.9,379.1 840.6,355 882.3,379.1 882.3,427.3 840.6,451.4 798.9,427.3 "/>
<text transform="matrix(1 0 0 1 825.7084 390.4493)"><tspan x="0" y="0" class="catnumst1 catnumst6 catnumst7">ONE</tspan><tspan x="-15.5" y="16.8" class="catnumst1 catnumst6 catnumst7">OBS. PER</tspan><tspan x="-9.7" y="33.6" class="catnumst1 catnumst6 catnumst7">GROUP</tspan></text>
</g>
<path class="catnumst0" d="M798.9,427.3h-33.5c-5.5,5.5-8.6,8.6-14.2,14.2l0,34.4"/>
<path class="catnumst0" d="M864.5,306.5h-9.7c-5.5,5.5-8.6,8.6-14.2,14.2V355"/>
</g>
<g>
<g>