-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (72 loc) · 2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<head>
<link rel="stylesheet" href="stylesheets/style.css" type="text/css">
</head>
<body>
<script src="http://d3js.org/d3.v2.min.js?2.9.6"></script>
<script>
var classes = [{
"group": 1,
"name": "Biological Sciences",
"word": "main node",
"children": [{
"group": 0,
"name": "Applied",
"children": [{
"group": 2,
"name": "BIO ENG 143",
"class": "Computational Methods in Biology"
}, {
"group": 2,
"name": "ESPM C177",
"class": "GIS and Environmental Spatial Data Analysis"
}, {
"group": 2,
"name": "MCELLBI 137",
"class": "Computer Simulation in Biology"
}, {
"group": 2,
"name": "NUSCTX 121",
"class": "Computational Toxicology"
}, {
"group": 2,
"name": "PB HLTH 141",
"class": "Introduction to Biostatistics"
}, {
"group": 2,
"name": "PB HLTH 142",
"class": "Introduction to Probability and Statistics in Biology and Public Health"
}, {
"group": 2,
"name": "L & S 88-1",
"class": "Health, Human Behavior, and Data"
}]
}, {
"group": 0,
"name": "Foundational-Applied",
"children": [{
"group": 3,
"name": "STAT 20",
"class": "Introduction to Probability and Statistics"
}, {
"group": 3,
"name": "COMPSCI 61B",
"class": "Data Structures"
}, {
"group": 3,
"name": "COMPSCI 61A",
"class": "Structure and Interpretation of Computer Programs"
}]
}, {
"group": 0,
"name": "Multidisciplinary",
"children": [{
"group": 4,
"name": "COMPSCI C8",
"class": "Introduction to Data Science"
}]
}]
}]
</script>
<script type="text/javascript" src="stylesheets/script.js"></script>
</body>
</html>