-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpg.html
45 lines (36 loc) · 1.31 KB
/
webpg.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<svg id="heat"></svg>
<div id="heatTooltip" class="hide tooltip"></div>
<div class="hide" id="buttonsH">
<button id="deadline">Deadline Data</button>
<button id="launched">Launched Data</button>
<button id="resetH">Reset</button>
</div>
<svg id="tree"></svg>
<div id="treemapTooltip" class="hide tooltip"></div>
<div id="buttonsT" class="hide">
<button id="show">Show Detail Graphs</button>
<button id="resetT">Reset</button>
</div>
<div id="error" class="hide">Please select a category to display the detail graph</div>
<svg id="tsne"></svg>
<svg id="parallel"></svg>
<div id="parallelTooltip" class="hide tooltip"></div>
<script src='./scripts/d3.v4.min.js'></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script src='https://raw.githack.com/karpathy/tsnejs/master/tsne.js'></script>
<script src="./scripts/d3-lasso.js"></script>
<script src='./scripts/tsneGraph.js'></script>
<script src='./scripts/parallelGraph.js'></script>
<script src='./scripts/heatMap.js'></script>
<script src='./scripts/treeMap.js'></script>
<script src='./scripts/control.js'></script>
<script src='./scripts/data.js'></script>
</body>
</html>