-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchord.html
45 lines (32 loc) · 1.06 KB
/
chord.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 lang=en>
<head>
<title>Hacker School Github Data</title>
<meta charset="utf-8">
<!--
<link href='http://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css' />
-->
<link type="text/css" href="static/css/hacker_pca.css" rel="stylesheet" />
<script type="text/javascript" src="static/jslib/d3.js"></script>
<script type="text/javascript" src="static/jslib/underscore-min.js"></script>
<script type="text/javascript" src="static/js/pca_graph.js"></script>
<script type="text/javascript" src="static/js/chord.js"></script>
</head>
<body>
<div id="topimage" align="center">
<img src="static/image/hs_blue_logo.png" />
</div>
<!--
<button id="pcbutton">Principle Components</button>
<button id="contributionsbutton">Contributions</button>
-->
<div id="wrapper">
<!-- <div id="hackers"></div> -->
<div id="graph"><svg id='mainSVG'></svg></div>
<!-- <div id="collaborators"></div> -->
</div>
<script>
d3.json("static/data/hacker_links.json", setup_chord);
</script>
</body>
</html>