-
Notifications
You must be signed in to change notification settings - Fork 2
/
bigdata_parallelcoordinates.html
55 lines (34 loc) · 1.64 KB
/
bigdata_parallelcoordinates.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title>d3.js Canvas Parallel Coordinates - Chris Evans</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="http://underscorejs.org/underscore-min.js"></script>
<script src="_include/js/lib/d3.parcoords.js"></script>
<script src="_include/js/lib/d3.underscore.math.js"></script>
<script src="_include/js/lib/d3.divgrid.js"></script>
<link rel="stylesheet" href="_include/css/fonts/droid.css" type="text/css" charset="utf-8" />
<link href="_include/css/d3.parcoords.css" rel="stylesheet">
<link href="_include/css/bigdata.parallelcoordinates.css" rel="stylesheet">
</head>
<body>
<button id="keep-data">Keep</button>
<button id="exclude-data">Exclude</button>
<button id="reset-data">Reset</button>
<br>
<div id="wrapper" class="parcoords" style="width:100%;height:340px">
<div id="desc">
<div id="title"><span class="large">Parallel Coordinates</span></div>
<footer><br>
a d3.js visualisation by Chris Evans using car data from the 70's and 80's
<br><br>Drag around axis to begin brush<br>
Click axis to clear brush<br>Click a label to color data by z-scores
</footer>
</div>
</div>
<div id="grid"></div>
<script type="text/javascript" src="_include/js/bigdata.parallelcoordinates.js"></script>
</body>
</html>