-
Notifications
You must be signed in to change notification settings - Fork 0
/
dist_chi2.html
91 lines (72 loc) · 3.25 KB
/
dist_chi2.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>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-131282143-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-131282143-1');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>EZ Statistics: Chi-Square distribution</title>
<meta name="description" content="EZ Statistics Chi-Square distribution">
<link rel="stylesheet" href="style/stats.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-csv/0.71/jquery.csv-0.71.min.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="jstat.js"></script>
<script src="ezstatistics-0.30.js"></script>
</head>
<body>
<center><img class="round" src="style/logo.png" height="105"/></center>
<div style="text-align: right"><a href="index.html">Back to main page</a></div>
<h3 class="f18b">Chi-Square distribution Visualization</h3>
<div class="smalltext">
<table>
<tr>
<td width="30">DF:</td>
<td width="130"><input class="value" name="df" id="df" value="10"></td>
</tr>
<tr>
<td></td>
<td><button class="test" onclick="javascript:dist_chi2()">Generate</button></td>
<tr/>
</table>
<br>
<div id="error">
</div>
<div id="viz" style="display: none;">
<div class="label16">
<h3 class="f16"> Distribution</h3>
</div>
<div id="chart"></div>
<br>
The table shows the probability of getting a chi-square value this large or larger.<br>
<table><tr><td style="vertical-align: top;" width="200">
<table>
<thead>
<tr>
<th class="dark" width="100">chi-square</th>
<th class="dark" width="60">Prob</th>
</tr>
</thead>
<tbody id="p1"></tbody>
</table>
</td><td style="vertical-align: top;" width="200">
<table>
<thead>
<tr>
<th class="dark" width="100">chi-square</th>
<th class="dark" width="60">Prob</th>
</tr>
</thead>
<tbody id="p2"></tbody>
</table>
</td></tr></table>
</div>
</div>
</body>
</html>