-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
63 lines (58 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>The d3 plots</title>
<style>
.chart {
}
.main text {
font: 10px sans-serif;
}
.axis line, .axis path {
shape-rendering: crispEdges;
stroke: black;
fill: none;
}
.ms{
fill: #3498db;
}
.me {
fill: rgb(228, 75, 75);
}
.ml{
fill: #1abc9c;
}
.mm{
fill: rgb(130, 195, 53);
}
.md{
fill: rgb(254, 115, 81);
}
.tooltip {
position: absolute;
width: 200px;
height: 28px;
pointer-events: none;
}
</style>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.v2.js"></script>
</head>
<body>
<div class='meanStd' style="float:left">
<!-- /the chart goes here -->
</div>
<div class='meanEntropy' style="float:left">
<!-- /the chart goes here -->
</div>
<div class='meanLength'>
<!-- /the chart goes here -->
</div>
<div class='meanMedian' style="float:left">
<!-- /the chart goes here -->
</div>
<div class='meanMaxDepth'>
<!-- /the chart goes here -->
</div>
<script type="text/javascript" src="plot.js"></script>
</body>
</html>