generated from RhoInc/webcharts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (63 loc) · 4.39 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
<html>
<head>
<title>safety-qc-dashboard - Example</title>
<meta http-equiv='Content-Type' content='text/html; charset = utf-8'>
<script type='text/javascript' src='https://d3js.org/d3.v3.min.js'></script>
<script type='text/javascript' src='https://cdn.jsdelivr.net/gh/RhoInc/Webcharts/build/webcharts.min.js'></script>
<script type='text/javascript' src='safetyQcDashboard.js'></script>
<link type='text/css' rel='stylesheet' href='https://cdn.jsdelivr.net/gh/RhoInc/Webcharts/css/webcharts.min.css'>
<link type='text/css' rel='stylesheet' href='./index.css'>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="w3-top">
<div class="w3-bar rho-green w3-card w3-left-align w3-large">
<a class="w3-bar-item w3-button w3-hide-medium w3-hide-large w3-right w3-padding-large w3-hover-white w3-large w3-red"
href="javascript:void(0);" onclick="myFunction()" title="Toggle Navigation Menu"><i class="fa fa-bars"></i></a>
<a href="." class="w3-bar-item w3-button w3-padding-large w3-white">Overview</a>
<a href="./reports/ae-timelines.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">AE Timelines</a>
<a href="./reports/aeexplorer.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">AE Explorer</a>
<a href="./reports/hep-explorer.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">Hep Explorer</a>
<a href="./reports/safety-delta-delta.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">Delta-Delta</a>
<a href="./reports/safety-histogram.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">Histogram</a>
<a href="./reports/safety-outlier-explorer.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">Outlier Explorer</a>
<a href="./reports/safety-results-over-time.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">Results Over Time</a>
<a href="https://github.com/RhoInc/safety-qc-dashboard/" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white"><i
class="fa fa-github"></i></a>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium w3-large">
<a href="." class="w3-bar-item w3-button w3-padding-large w3-white">Overview</a>
<a href="./reports/ae-timelines.html" class="w3-bar-item w3-button w3-padding-large ">AE
Timelines</a>
<a href="./reports/aeexplorer.html" class="w3-bar-item w3-button w3-padding-large">AE
Explorer</a>
<a href="./reports/hep-explorer.html" class="w3-bar-item w3-button w3-padding-large">Hep
Explorer</a>
<a href="./reports/safety-delta-delta.html" class="w3-bar-item w3-button w3-padding-large">Delta-Delta</a>
<a href="./reports/safety-histogram.html" class="w3-bar-item w3-button w3-padding-large">Histogram</a>
<a href="./reports/safety-outlier-explorer.html" class="w3-bar-item w3-button w3-padding-large">Outlier
Explorer</a>
<a href="./reports/safety-results-over-time.html" class="w3-bar-item w3-button w3-padding-large">Results
Over Time</a>
<a href="https://github.com/RhoInc/safety-qc-dashboard/" class="w3-bar-item w3-button w3-padding-large"><i
class="fa fa-github"></i></a>
</div>
</div>
<header class="w3-container rho-blue w3-center">
<h1 class="w3-margin">Safety Quality Control Dashboard</h1>
</header>
<div class='info'>This page provides an overview of the quality control process for the Interactive Safety Monitoring graphics created at Rho Inc. The source code for this page is available on <a href="https://github.com/RhoInc/safety-qc-dashboard">github</a>.</div>
<div id='container'></div>
</body>
<script type='text/javascript'>
const chart = safetyQcDashboard('#container', {});
d3.json('./data/allRepos.json', function (repos) {
let renderers = repos.map(m=>m.repo)
chart.init(repos);
})
</script>
</html>