-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
90 lines (78 loc) · 2.88 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
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<title>Data Pipeline Dashboard</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1 {font-family: "Raleway", Arial, sans-serif}
h1 {letter-spacing: 6px}
.w3-row-padding img {margin-bottom: 12px}
</style>
<body>
<!-- !PAGE CONTENT! -->
<div class="w3-content" style="max-width:1500px">
<!-- Header -->
<header class="w3-panel w3-center w3-opacity" style="padding:128px 16px">
<h1 class="w3-xlarge">DATA PIPELINE DASHBOARD</h1>
<h1>BreastScreening</h1>
<hr>
<h2>Multimodal Breast Dataset</h2>
<div class="w3-padding-32">
<div class="w3-bar w3-border">
<a href="plot_modalities.html" class="w3-bar-item w3-button" target="_blank">
All
</a>
<a href="plot_birads_frequency.html" class="w3-bar-item w3-button w3-light-grey" target="_blank">
Frequencies
</a>
<a href="plot_birads_mg_frequency.html" class="w3-bar-item w3-button" target="_blank">
MGs
</a>
<a href="plot_birads_us_frequency.html" class="w3-bar-item w3-button w3-light-grey" target="_blank">
US
</a>
<a href="plot_birads_mri_frequency.html" class="w3-bar-item w3-button" target="_blank">
MRIs
</a>
<a href="plot_birads_mri_side_by_side.html" class="w3-bar-item w3-button w3-light-grey" target="_blank">
MRIs Sides
</a>
</div>
<div class="w3-bar w3-border">
<a href="https://github.com/MIMBCD-UI/meta/wiki/Tools#anonymization-tools" class="w3-bar-item w3-button" target="_blank">
Information
</a>
</div>
</div>
<hr>
<h2>Other Statistical Analysis</h2>
<h3>(User Research)</h3>
<div class="w3-padding-32">
<div class="w3-bar w3-border">
<a href="https://mimbcd-ui.github.io/statistical-analysis/" class="w3-bar-item w3-button" target="_blank">
Go
</a>
</div>
</div>
<hr>
</header>
<!-- End Page Content -->
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-64 w3-light-grey w3-center w3-large">
<a href="https://www.facebook.com/opprgroup" target="_blank">
<i class="fa fa-facebook-official w3-hover-opacity"></i>
</a>
<a href="https://twitter.com/@opprgroup" target="_blank">
<i class="fa fa-twitter w3-hover-opacity"></i>
</a>
<a href="https://www.linkedin.com/company/oppr" target="_blank">
<i class="fa fa-linkedin w3-hover-opacity"></i>
</a>
<p>Powered by <a href="https://oppr.io/" target="_blank" class="w3-hover-text-green">oppr</a> • Developed by <a href="https://dev.oppr.io/" target="_blank" class="w3-hover-text-green">opprDev Team</a></p>
</footer>
</body>
</html>