-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (34 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<title>Disease Testing</title>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<!--script src="//cdnjs.cloudflare.com/ajax/libs/vue/2.1.6/vue.min.js"></script--> <!-- try 2.6.10 -->
<script src="lib/jquery-1.12.4.min.js"></script>
<script src="lib/jquery-ui-1.11.4.min.js"></script>
<script src="lib/d3.min.js"></script>
<script src="lib/sankey.js"></script>
<link rel="stylesheet" type="text/css" href="lib/jquery-ui-1.11.4.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="css/bayesRule.css">
<link rel="stylesheet" type="text/css" href="css/sankey.css">
<link rel="stylesheet" type="text/css" href="css/vennDiagram.css">
<link rel="stylesheet" type="text/css" href="css/slider.css">
<meta charset="UTF-8">
<meta name="description" content="Visualization of Baye's rule using disease testing context">
<meta name="keywords" content="bayes rule, disease testing, d3, visualization">
<meta name="author" content="Barry G Becker">
</head>
<body>
<div id="app">
<h1>Disease Testing Visualization</h1>
<introduction-content></introduction-content>
<disease-simulation
:total-population="10000000"
:initial-pct-diseased="1"
:initial-test-accuracy="90">
</disease-simulation>
</div>
</body>
<script src="js/App.vue.js" type="module"></script>
</html>