-
Notifications
You must be signed in to change notification settings - Fork 428
Expand file tree
/
Copy pathsectionDescriptions.js
More file actions
458 lines (458 loc) · 12.3 KB
/
sectionDescriptions.js
File metadata and controls
458 lines (458 loc) · 12.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
export const chartTypesInfo = [
{
id: 'violin',
family: 'distribution',
logo: 'Violin150',
dataToVizURL: 'https://www.data-to-viz.com/graph/violin.html',
pythonURL: 'https://python-graph-gallery.com/violin-plot/',
label: 'Violin',
},
{
id: 'density',
family: 'distribution',
logo: 'Density150',
dataToVizURL: 'https://www.data-to-viz.com/graph/density.html',
pythonURL: 'https://python-graph-gallery.com/density-plot/',
label: 'Density',
},
{
id: 'histogram',
family: 'distribution',
logo: 'Histogram150',
dataToVizURL: 'https://www.data-to-viz.com/graph/histogram.html',
pythonURL: 'https://python-graph-gallery.com/histogram/',
label: 'Histogram',
},
{
id: 'boxplot',
family: 'distribution',
logo: 'Box1150',
dataToVizURL: 'https://www.data-to-viz.com/caveat/boxplot.html',
pythonURL: 'https://python-graph-gallery.com/boxplot/',
label: 'Boxplot',
},
{
id: 'ridgeline',
family: 'distribution',
logo: 'Joyplot150',
dataToVizURL: 'https://www.data-to-viz.com/graph/ridgeline.html',
pythonURL: 'https://python-graph-gallery.com/ridgeline/',
label: 'Ridgeline',
},
{
id: 'beeswarm',
family: 'distribution',
logo: 'Beeswarm2Big',
dataToVizURL: 'https://www.data-to-viz.com/graph',
pythonURL: 'https://python-graph-gallery.com/beeswarm/',
label: 'Beeswarm',
},
{
id: 'scatter',
family: 'correlation',
logo: 'ScatterPlot150',
dataToVizURL: 'https://www.data-to-viz.com/graph/scatter.html',
pythonURL: 'https://python-graph-gallery.com/scatter-plot/',
label: 'Scatterplot',
},
{
id: 'heatmap',
family: 'correlation',
logo: 'Heatmap150',
dataToVizURL: 'https://www.data-to-viz.com/graph/heatmap.html',
pythonURL: 'https://python-graph-gallery.com/heatmap/',
label: 'Heatmap',
},
{
id: 'correlogram',
family: 'correlation',
logo: 'Correlogram150',
dataToVizURL: 'https://www.data-to-viz.com/graph/correlogram.html',
pythonURL: 'https://python-graph-gallery.com/correlogram/',
label: 'Correlogram',
},
{
id: 'bubble',
family: 'correlation',
logo: 'BubblePlot150',
dataToVizURL: 'https://www.data-to-viz.com/graph/bubble.html',
pythonURL: 'https://python-graph-gallery.com/bubble-plot/',
label: 'Bubble',
},
{
id: 'connectedScatter',
family: 'correlation',
logo: 'ScatterConnected150',
dataToVizURL: 'https://www.data-to-viz.com/graph/connectedscatter.html',
pythonURL: 'https://python-graph-gallery.com/connected-scatter-plot/',
label: 'Connected Scatter',
},
{
id: 'density2d',
family: 'correlation',
logo: '2dDensity150',
dataToVizURL: 'https://www.data-to-viz.com/graph/density2d.html',
pythonURL: 'https://python-graph-gallery.com/2d-density-plot/',
label: '2D Density',
},
{
id: 'barplot',
family: 'ranking',
logo: 'Bar150',
dataToVizURL: 'https://www.data-to-viz.com/graph/barplot.html',
pythonURL: 'https://python-graph-gallery.com/barplot/',
label: 'Barplot',
},
{
id: 'radar',
family: 'ranking',
logo: 'Spider150',
dataToVizURL: 'https://www.data-to-viz.com/caveat/spider.html',
pythonURL: 'https://python-graph-gallery.com/radar-chart/',
label: 'Spider / Radar',
},
{
id: 'wordcloud',
family: 'ranking',
logo: 'Wordcloud150',
dataToVizURL: 'https://www.data-to-viz.com/graph/wordcloud.html',
pythonURL: 'https://python-graph-gallery.com/wordcloud/',
label: 'Wordcloud',
},
{
id: 'parallel',
family: 'ranking',
logo: 'Parallel1150',
dataToVizURL: 'https://www.data-to-viz.com/graph/parallel.html',
pythonURL: 'https://python-graph-gallery.com/parallel-plot/',
label: 'Parallel',
},
{
id: 'lollipop',
family: 'ranking',
logo: 'Lollipop150',
dataToVizURL: 'https://www.data-to-viz.com/graph/lollipop.html',
pythonURL: 'https://python-graph-gallery.com/lollipop-plot/',
label: 'Lollipop',
},
{
id: 'circularBarplot',
family: 'ranking',
logo: 'CircularBarplot150',
dataToVizURL: 'https://www.data-to-viz.com/graph/circularbarplot.html',
pythonURL: 'https://python-graph-gallery.com/circular-barplot/',
label: 'Circular Barplot',
},
{
id: 'table',
family: 'ranking',
logo: 'TableBig',
dataToVizURL: 'https://www.data-to-viz.com',
pythonURL: 'https://python-graph-gallery.com/table/',
label: 'Table',
},
{
id: 'treemap',
family: 'partOfAWhole',
logo: 'Tree150',
dataToVizURL: 'https://www.data-to-viz.com/graph/treemap.html',
pythonURL: 'https://python-graph-gallery.com/treemap/',
label: 'Treemap',
},
{
id: 'venn',
family: 'partOfAWhole',
logo: 'Venn150',
dataToVizURL: 'https://www.data-to-viz.com/graph/venn.html',
pythonURL: 'https://python-graph-gallery.com/venn-diagram/',
label: 'Venn Diagram',
},
{
id: 'donut',
family: 'partOfAWhole',
logo: 'Doughnut150',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/donut-plot/',
label: 'Donut',
},
{
id: 'pie',
family: 'partOfAWhole',
logo: 'Pie150',
dataToVizURL: 'https://www.data-to-viz.com/caveat/pie.html',
pythonURL: 'https://python-graph-gallery.com/pie-plot/',
label: 'Pie Chart',
},
{
id: 'dendrogram',
family: 'partOfAWhole',
logo: 'Dendrogram150',
dataToVizURL: 'https://www.data-to-viz.com/graph/dendrogram.html',
pythonURL: 'https://python-graph-gallery.com/dendrogram/',
label: 'Dendrogram',
},
{
id: 'circularPacking',
family: 'partOfAWhole',
logo: 'CircularPacking150',
dataToVizURL: 'https://www.data-to-viz.com/graph/circularpacking.html',
pythonURL: 'https://python-graph-gallery.com/circular-packing/',
label: 'Circular Packing',
},
{
id: 'waffle',
family: 'partOfAWhole',
logo: 'Waffle2Small',
dataToVizURL: 'https://www.data-to-viz.com',
pythonURL: 'https://python-graph-gallery.com/waffle-chart/',
label: 'Waffle',
},
{
id: 'line',
family: 'evolution',
logo: 'Line150',
dataToVizURL: 'https://www.data-to-viz.com/graph/line.html',
pythonURL: 'https://python-graph-gallery.com/line-chart/',
label: 'Line chart',
},
{
id: 'area',
family: 'evolution',
logo: 'Area150',
dataToVizURL: 'https://www.data-to-viz.com/graph/area.html',
pythonURL: 'https://python-graph-gallery.com/area-plot/',
label: 'Area chart',
},
{
id: 'stackedArea',
family: 'evolution',
logo: 'StackedArea150',
dataToVizURL: 'https://www.data-to-viz.com/graph/stackedarea.html',
pythonURL: 'https://python-graph-gallery.com/stacked-area-plot/',
label: 'Stacked Area',
},
{
id: 'stream',
family: 'evolution',
logo: 'Stream150',
dataToVizURL: 'https://www.data-to-viz.com/graph/streamgraph.html',
pythonURL: 'https://python-graph-gallery.com/streamchart/',
label: 'Streamgraph',
},
{
id: 'candlestick',
family: 'evolution',
logo: 'CandleStick2Small',
dataToVizURL: 'https://www.data-to-viz.com',
pythonURL: 'https://python-graph-gallery.com/candlestick/',
label: 'Candlestick',
},
{
id: 'timeseries',
family: 'evolution',
logo: 'time150',
dataToVizURL: 'https://www.data-to-viz.com',
pythonURL: 'https://python-graph-gallery.com/timeseries/',
label: 'Timeseries',
},
{
id: 'map',
family: 'map',
logo: 'Map150',
dataToVizURL: 'https://www.data-to-viz.com/graph/map.html',
pythonURL: 'https://python-graph-gallery.com/map/',
label: 'Map',
},
{
id: 'choropleth',
family: 'map',
logo: 'Choropleth150',
dataToVizURL: 'https://www.data-to-viz.com/graph/choropleth.html',
pythonURL: 'https://python-graph-gallery.com/choropleth-map/',
label: 'Choropleth',
},
{
id: 'hexbin',
family: 'map',
logo: 'MapHexbin150',
dataToVizURL: 'https://www.data-to-viz.com/graph/hexbinmap.html',
pythonURL: 'https://python-graph-gallery.com/hexbin-map/',
label: 'Hexbin',
},
{
id: 'cartogram',
family: 'map',
logo: 'Cartogram150',
dataToVizURL: 'https://www.data-to-viz.com/graph/cartogram.html',
pythonURL: 'https://python-graph-gallery.com/cartogram/',
label: 'Cartogram',
},
{
id: 'connection',
family: 'map',
logo: 'ConnectedMap150',
dataToVizURL: 'https://www.data-to-viz.com/story/MapConnection.html',
pythonURL: 'https://python-graph-gallery.com/connection-map/',
label: 'Connection',
},
{
id: 'bubbleMap',
family: 'map',
logo: 'BubbleMap150',
dataToVizURL: 'https://www.data-to-viz.com/graph/bubblemap.html',
pythonURL: 'https://python-graph-gallery.com/bubble-map/',
label: 'Bubble',
},
{
id: 'chordDiagram',
family: 'flow',
logo: 'Chord150',
dataToVizURL: 'https://www.data-to-viz.com/graph/chord.html',
pythonURL: 'https://python-graph-gallery.com/chord-diagram/',
label: 'Chord Diagram',
},
{
id: 'network',
family: 'flow',
logo: 'Network150',
dataToVizURL: 'https://www.data-to-viz.com/graph/network.html',
pythonURL: 'https://python-graph-gallery.com/network-chart/',
label: 'Network',
},
{
id: 'sankey',
family: 'flow',
logo: 'Sankey150',
dataToVizURL: 'https://www.data-to-viz.com/graph/sankey.html',
pythonURL: 'https://python-graph-gallery.com/sankey-diagram/',
label: 'Sankey',
},
{
id: 'arc',
family: 'flow',
logo: 'Arc150',
dataToVizURL: 'https://www.data-to-viz.com/graph/arc.html',
pythonURL: 'https://python-graph-gallery.com/arc-diagram/',
label: 'Arc Diagram',
},
{
id: 'edgeBundling',
family: 'flow',
logo: 'Bundle150',
dataToVizURL: 'https://www.data-to-viz.com/graph/edge_bundling.html',
pythonURL: 'https://python-graph-gallery.com/hierarchical-edge-bundling/',
label: 'Edge Bundling',
},
{
id: 'colors',
family: 'general',
logo: 'Colours150',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/python-colors/',
label: 'Colors',
},
{
id: 'plotly',
family: 'general',
logo: 'Interactive150',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/plotly/',
label: 'Interactivity',
},
{
id: 'matplotlib',
family: 'package',
logo: 'matplotlib',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/matplotlib/',
label: 'Matplotlib',
},
{
id: 'seaborn',
family: 'package',
logo: 'seaborn',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/seaborn/',
label: 'Seaborn',
},
{
id: 'plotnine',
family: 'package',
logo: 'plotnine',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/plotnine/',
label: 'Plotnine',
},
{
id: 'pandas',
family: 'package',
logo: 'pandas',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/pandas/',
label: 'Pandas',
},
{
id: 'drawarrow',
family: 'package',
logo: 'drawarrow',
dataToVizURL: 'https://python-graph-gallery.com/matplotlib/#Arrow',
pythonURL: 'https://python-graph-gallery.com/drawarrow/',
label: 'DrawArrow',
},
{
id: 'pyfonts',
family: 'package',
logo: 'pyfonts',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/pyfonts/',
label: 'PyFonts',
},
{
id: 'pypalettes',
family: 'package',
logo: 'pypalettes',
dataToVizURL: '/introduction-to-pypalettes',
pythonURL: '/introduction-to-pypalettes',
label: 'PyPalettes',
},
{
id: 'animation',
family: 'general',
logo: 'anim150',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/animation/',
label: 'Animation',
},
{
id: 'cheatSheets',
family: 'general',
logo: 'Cheat150',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/cheat-sheets/',
label: 'Cheat sheets',
},
{
id: 'caveats',
family: 'general',
logo: 'Bad150',
dataToVizURL: '',
pythonURL: 'https://www.data-to-viz.com/caveats.html',
label: 'Caveats',
},
{
id: '3d',
family: 'general',
logo: '3d150',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/3d/',
label: '3D',
},
{
id: 'statistics',
family: 'general',
logo: 'Stats150',
dataToVizURL: '',
pythonURL: 'https://python-graph-gallery.com/statistics/',
label: 'Statistics',
},
];