-
Notifications
You must be signed in to change notification settings - Fork 3
/
skew_normal.html
73 lines (69 loc) · 1.87 KB
/
skew_normal.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://d3js.org/d3.v6.js"></script>
<script src="math-js-wasm/skew_normal.js"></script>
<script src="stan-distribution-zoo.js"></script>
<script>
var x;
var y;
var svg;
var xAxis;
var yAxis;
var data = [];
var params = {
y_range: 10,
xi: 0,
omega: 1.0,
alpha: 3.0,
};
var continuous = true;
function update_data() {
data = []
for (let y = -params.y_range; y < params.y_range; y = y + params.y_range * 0.01) {
let res = Module.skew_normal_lpdf(y, params.xi, params.omega, params.alpha)
if ($("#exp-check")[0].checked) {
res = Math.exp(res)
}
data.push({ ser1: y, ser2: res})
}
}
var Module = {
onRuntimeInitialized: function () {
setup_page(
{
function_name: "skew_normal_lpdf (y | xi, omega, alpha)",
sliders: [
{
name: "y_range", text: "Range of y",
value: params.y_range, min: 1, max: 200, step: 1
},
{
name: "xi", text: "xi",
value: params.xi, min: -30, max: 30, step: 0.1
},
{
name: "omega", text: "omega",
value: params.omega, min: 0.1, max: 20, step: 0.1
},
{
name: "alpha", text: "alpha",
value: params.alpha, min: -30, max: 30, step: 0.1
}
],
exponentiate: true,
continuous: true,
x_axis_text: "y"
}
)
}
}
</script>
</head>
<body>
<div id="figure"></div>
</body>
</html>