-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSamplingDistribution.html
More file actions
59 lines (49 loc) · 1.61 KB
/
SamplingDistribution.html
File metadata and controls
59 lines (49 loc) · 1.61 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
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
<!DOCTYPE html>
<html>
<head>
<title>Sampling Distribution</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="animation.css">
<link rel="icon" href="mathsymbolsnobg.png" type="image/png">
</head>
<body>
<button onclick="window.location.href = 'index.html'">Dashboard</button>
<div class="container">
<div class="calculator">
<h2>Sampling Distribution</h1>
<form id="calculatorForm">
<label for="stdDev">Sample Standard Deviation:</label>
<input type="number" id="stdDev" required>
<label for="sampleSize">Sample Size:</label>
<input type="number" id="sampleSize" required>
<button type="submit">Calculate Standard Error</button>
</form>
<div id="result"></div>
<br><br>
<a href="#" class="custom-link" onclick="showPopup()">Check Formula</a>
<div id="popup" class="popup">
<h2>Formula</h2>
<h4>Standard Error:</h4>
<p>standard error = Sample Standard Deviation / √Sample Size </p>
<button onclick="closePopup()">Close</button>
</div>
</div>
</div>
<!--Animation Background Design-->
<div class="area">
<ul class="circles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<script src="SamplingDistribution.js"></script>
</body>
</html>