-
Notifications
You must be signed in to change notification settings - Fork 1
/
master.html
69 lines (66 loc) · 2.34 KB
/
master.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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>VizADR</title>
<link href="style.css" rel="stylesheet" type="text/css"></link>
<link rel="stylesheet" href="bootstrap.css" media="screen">
<script src="d3.min.js"></script>
</head>
<body>
<div id="main">
<div class="navbar navbar-default navbar-fixed-top">
<div class="navbar-header">
<a href="overview.html" class="navbar-brand">VizADR</a>
</div>
</div>
<div id="soc"></div>
<div id="scatter"></div>
<div id="overviewinfo">
<div class="panel panel-info">
<div class="panel-heading">Info</div>
<div class="panel-body">
<b>Scatterplot</b><br>
x-Axis: drugs<br>y-Axis: adverse reactions<br>Dot size: amout of reports
<br>
<br>
<b>Interactions</b><br>
Sort dots by report count or drug/reaction term.<br>
Display gender or age group differences.<br>
Add seriousness-%, set a minimum via slider.<br>
Move over dots for report count.<br>
Click on dots for details and outcome analysis.
</div>
</div>
</div>
<div id="filter">
<div id="sortFilter">
<div id="filterlabel">Sorting </div>
<div id="filterinput">
<select id="sortSelect">
<option value="alphabetically">Alphabetically</option>
<option value="reportcount">Report Count</option>
</select>
</div>
<br><br>
</div>
<div id="genderFilter">
<div id="filterinput"><input type="checkbox" id="checkGender" name="checkGender"></div><div id="filterlabel">Show gender differences</div><br><br>
</div>
<div id="genderLegend"></div>
<div id="ageFilter">
<div id="filterinput"><input type="checkbox" id="checkAge" name="checkAge"></div><div id="filterlabel">Show age group differences</div><br><br>
</div>
<div id="ageLegend"></div>
<div id="seriousFilter">
<div id="filterinput"><input type="checkbox" id="checkSerious" name="checkSerious"></div><div id="filterlabel">Show seriousness</div><br><br>
</div>
<div id="seriousRange">
<div id="filterinput"><input id="rangeSerious" type="range" min="0" max="100" step="1" value="50"></div><div id="rangeSeriousLabel">≥50</div>
</div>
</div>
</div>
<script src="master.js"></script>
<script src="jquery-1.10.2.min.js"></script>
<script src="bootstrap.js"></script>
</html>