-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
85 lines (72 loc) · 2.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>K-means</title>
<!-- Le styles -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<!-- Fav and touch icons -->
<link rel="shortcut icon" href="ico/favicon.png">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="brand" href="#">K-Means Demo</a>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span3">
<div class="well sidebar-nav">
<form>
<fieldset>
<div class="control-group">
<label class="control-label" for="inputNumObservations">Number of Observations</label>
<div class="controls">
<div class="input-append">
<input type="text" id="inputNumObservations" style="width:30px;">
<button id="buttonGenerate" type="button" class="btn btn-inverse">Generate</button>
</div>
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputNumCentroids">Number of Centroids</label>
<div class="controls">
<div class="input-append">
<input type="text" id="inputNumCentroids" style="width:30px;">
<button id="buttonCluster" type="submit" class="btn btn-primary">Cluster</button>
</div>
</div>
</div>
</fieldset>
</form>
</div><!--/.well -->
</div><!--/span-->
<div class="span9">
<div class="hero-unit">
<div id="visualization">
</div>
</div>
</div><!--/span-->
</div><!--/row-->
<hr>
<footer>
<p>© Company 2013</p>
</footer>
</div><!--/.fluid-container-->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/d3.v3.min.js"></script>
<script src="js/application.js"></script>
</body>
</html>