-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1varstats.html
More file actions
33 lines (32 loc) · 1.1 KB
/
1varstats.html
File metadata and controls
33 lines (32 loc) · 1.1 KB
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
<!DOCTYPE HTML>
<html>
<head>
<title>1 Variable Statistics - StatApp</title>
<link rel="stylesheet" href="style.css"></link>
<link rel="icon" href="favicon.png"></link>
</head>
<body>
<h1>StatApp</h1>
<textarea id="data" placeholder="Enter values split by commas; n*m will generate m instances of n"></textarea>
<br>
<button id="enter">Enter</button> <button id="save">Save current dataset</button>
<br>
<select id="widgetselect" disabled>
<option value="">Select a widget:</option>
<option value="generaldata">General Data</option>
<option value="frequencystats">Frequency Stats</option>
<option value="normal">Normal Distribution</option>
<option value="histogram">Histogram</option>
<option value="boxplot">Box Plot</option>
</select>
<div id="widgetdisplay">
<div id="generaldata"></div>
<div id="frequencystats"></div>
<div id="normal"></div>
<div id="histogram"></div>
<div id="boxplot"></div>
</div>
<a href="./" class="footer">Home</a>
<script src="1varstats.js"></script>
</body>
</html>