-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (110 loc) · 3.64 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Clustering Data Visualization</title>
<script src="https://d3js.org/d3.v6.min.js"></script>
<!-- <script src="https://d3js.org/d3.v2.min.js" charset="utf-8"></script> -->
<link rel="stylesheet" type="text/css" href="./styles/tab.css"></style>
<link rel="stylesheet" type="text/css" href="./styles/main.css"></style>
<div style="text-align: center;">
<h2>Clustering Data Visualization</h2>
</div>
</head>
<body>
<div id="container">
<div id="menu">
<div>
<h4>Menu</h4>
</div>
<div>
<p><b>Select dataset</b></p>
<p>Image</p>
<input type="radio" checked name="dataset" id="warpAR10P" value="warpAR10P" onclick="onDataChange()">
<label for="warpAR10P">
warpAR10P (130x2400)
</label>
<br>
<input type="radio" name="dataset" id="warpPIE10P" value="warpPIE10P" onclick="onDataChange()">
<label for="warpPIE10P">
warpPIE10P (210x2420)
</label>
<br>
<input type="radio" name="dataset" id="pixraw10P" value="pixraw10P" onclick="onDataChange()">
<label for="pixraw10P">
pixraw10P (100x10000)
</label>
<p>Bio</p>
<input type="radio" name="dataset" id="Carcinom" value="Carcinom" onclick="onDataChange()">
<label for="Carcinom">
Carcinom (174x9182)
</label>
<br>
<input type="radio" name="dataset" id="TOX171" value="TOX171" onclick="onDataChange()">
<label for="TOX171">
TOX171 (171x5748)
</label>
<br>
<input type="radio" name="dataset" id="ProstateGE" value="ProstateGE" onclick="onDataChange()">
<label for="ProstateGE">
ProstateGE (102x5966)
</label>
</div>
<div>
<p><b>Select FS method</b></p>
<input type="radio" checked name="method" id="LS" value="LS" onclick="onDataChange()">
<label for="LS">
Laplace Score
</label>
<br>
<input type="radio" name="method" id="SPEC" value="SPEC" onclick="onDataChange()">
<label for="SPEC">
SPEC
</label>
<br>
<input type="radio" name="method" id="iDetect" value="iDetect" onchange="onDataChange()">
<label for="idetect">
i-detect
</label>
<br>
<input type="radio" name="method" id="GLSPFS" value="GLSPFS" onchange="onDataChange()">
<label for="GLSPFS">
GLSPFS
</label>
</div>
<div>
<p><b>Select number of features:</b></p>
<input name="cutoff"
type="range"
value="5"
min="5" max="100" step="5"
oninput="this.nextElementSibling.value = this.value"
onclick="onDataChange()">
<output>5</output>
</div>
</div>
<div id="content">
<h4>Results</h4>
<div class="tab">
<button id="default" class="tablinks" onclick="showTabContent(event, 'graph')">Neighborhood Graph</button>
<button class="tablinks" onclick="showTabContent(event, 'heatmap')">Similarity Matrix</button>
<!-- <button class="tablinks" onclick="showTabContent(event, 'sankey')">Features</button> -->
</div>
<div id="graph" class="tabcontent">
<!-- <svg></svg> -->
</div>
<div id="heatmap" class="tabcontent">
</div>
<!-- <div id="sankey" class="tabcontent">
<p>features map is building ...</p>
</div> -->
</div>
</div>
<script src="./scripts/tab.js"></script>
<script src="./scripts/draw.js"></script>
<!-- <script src="./scripts/heatmap.js"></script> -->
<div style="text-align: center;">
<p>© 2021 https://github.com/marcosd3souza</p>
</div>
</body>
</html>