forked from irusri/correlation-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (34 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Correlation Explorer in D3.js - Branched from Compassinc</title>
<script type='text/javascript' src='http://d3js.org/d3.v3.min.js'></script>
<script type='text/javascript' src="correxplorer.js"></script>
<link rel="stylesheet" type="text/css" href="correxplorer.css">
</head>
<body>
<p>Examples: mutual_info.csv, size.csv, pcs_size.csv, diseases.csv, country_disease.csv (or load your own file - just use the full path, e.g. of a file shared via Dropbox).</p>
<p>Click on a label to sort according to it.</p>
<p>
<input type="text" value="examples/pcs_size.csv" id="file_path">
Transpose?
<input type="checkbox" id="transpose">
<button id="file_load">Load CSV!</button>
Sort by:
<select id="sort_func">
<option value="abs_value">by Absolute Value</option>
<option value="value">by Value</option>
<option value="similarity">by Similarity</option>
<option value="alphabetic">Alphabetic</option>
<option value="original">Original</option>
</select>
Keep symmetry?
<input type='checkbox' id="keep_symmetry" checked="true">
Zoom?
<input type='text' id="zoom" value="1.">
</p>
<div class="tooltip" style="opacity: 0.01"></div>
<!-- <p>Built with <a href="http://d3js.org/">d3.js</a>.</p> -->
</body>
</html>