-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (59 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width">
<title>Visual distributions</title>
<link href="./css/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<main>
<h2>Interactive visualization of probability distributions</h2>
<table id="distributions">
<tr>
<th><p class="dist-category"><span style="color:green">Discrete</span> distributions</p></th>
<th><p class="dist-category"><span style="color:red">Continuous</span> distributions</p></th>
</tr>
<tr>
<td>
<ul>
<li><a href="./benford.html">Benford</a></li>
<li><a href="./bernoulli.html">Bernoulli</a></li>
<li><a href="./binomial.html">Binomial</a></li>
<li><a href="./geometric.html">Geometric</a></li>
<li><a href="./hypgeom.html">Hypergeometric</a></li>
<li><a href="./negbin.html">Negative binomial</a></li>
<li><a href="./orderedLogit.html">Ordered Logit</a></li>
<li><a href="./poisson.html">Poisson</a></li>
<li><a href="./uniform_discrete.html">Uniform</a></li>
</ul></td>
<td>
<ul>
<li><a href="./beta.html">Beta</a></li>
<li><a href="./chisquare.html">Chi-square</a></li>
<li><a href="./exponential.html">Exponential</a></li>
<li><a href="./centralF.html">F-distribution</a></li>
<li><a href="./gamma.html">Gamma</a></li>
<li><a href="./lognormal.html">Lognormal</a></li>
<li><a href="./normal.html">Normal</a></li>
<li><a href="./pareto.html">Pareto</a></li>
<li><a href="./rayleigh.html">Rayleigh</a></li>
<li><a href="./studentt.html">Student's t</a></li>
<li><a href="./triangular.html">Triangular</a></li>
<li><a href="./uniform.html">Uniform</a></li>
<li><a href="./weibull.html">Weibull</a></li>
</ul>
</td>
</tr>
</table>
</main>
</div>
<div id="site-footer">
<footer>
<p>This website is open source and hosted on <a href="https://github.com/probstats/probstats.github.io">our GitHub repository</a>.</p>
<p>Created by <a href="http://umich.edu/~fredfeng/">Fred Feng</a> | <a href="https://umdearborn.edu/">University of Michigan-Dearborn</a></p>
</footer>
</div>
</body>
</html>