-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudy.php
141 lines (114 loc) · 3.49 KB
/
study.php
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Normal Plot</title>
<meta name="description" content="">
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="./js/math.js" charset="utf-8"></script>
<script src="./js/helpers.js" charset="utf-8"></script>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<style type="text/css">
.axis path {
fill: none;
stroke: #777;
shape-rendering: crispEdges;
}
.axis text {
font-family: Lato;
font-size: 13px;
}
</style>
</head>
<body>
<!--php
$slug = htmlspecialchars($_GET["id"]);
$data_file = "./demo_data/" . $slug . ".json";
$tmp = file_get_contents($data_file);
$data = json_decode($tmp, true);
echo "The data on this page is from the following study:<br/><a href=\"" . $data['url'] . "\" target=\"_blank\">" . $data['citation'] . "</a> doi: " . $data['doi'] . '.<br/>';
echo "<b>Abstract:</b><br/>" . $data['abstract'] . "<br/>";
echo "<br/><br/>";
?> -->
<div id="study_info">Loading study meta data...</br></div>
<svg id="visualisation" width="1000" height="500"></svg>
</body>
<script type="text/javascript">
var slug = getParameterByName('id');
var file_path = "./demo_data/"
file_path += slug;
file_path += ".json";
//load the json data
$.getJSON(file_path, gen_page);
//generate the page content based on the json data
function gen_page(data){
pop_meta_data(data);
make_two_gaussians(data);
};
//function for making basic chart of two gaussians
function make_two_gaussians(data){
colour = [
'blue',
'green',
'red'
]
//populate data
var x_vals = get_x(data);
var d = gen_data(data, x_vals);
var vis = d3.select("#visualisation"),
WIDTH = 600,
HEIGHT = 400,
MARGINS = {
top: 20,
right: 20,
bottom: 20,
left: 50
},
xScale = d3.scale.linear().range([MARGINS.left, WIDTH - MARGINS.right]).domain([x_vals[0], x_vals[x_vals.length-1]]),
yScale = d3.scale.linear().range([HEIGHT - MARGINS.top, MARGINS.bottom]).domain([0,0.3]),
xAxis = d3.svg.axis()
.scale(xScale),
yAxis = d3.svg.axis()
.scale(yScale)
.orient("left");
vis.append("svg:g")
.attr("class", "x axis")
.attr("transform", "translate(0," + (HEIGHT - MARGINS.bottom) + ")")
.call(xAxis);
vis.append("svg:g")
.attr("class", "y axis")
.attr("transform", "translate(" + (MARGINS.left) + ",0)")
.call(yAxis);
var lineGen = d3.svg.line()
.x(function(d) {
return xScale(d.x);
})
.y(function(d) {
return yScale(d.y);
})
.interpolate("basis");
for (var i = 0; i < data.group.length; i++){
vis.append('svg:path')
.attr('d', lineGen(d[data.group[i].name]))
.attr('stroke', colour[i])
.attr('stroke-width', 2)
.attr('fill', 'none');
}
};
function pop_meta_data(data){
var output="";
output = "<b>The data on this page is from the following study:</b><br/><a href=\"";
output += data.url;
output += "\" target=\"_blank\">";
output += data.citation;
output += "</a> doi: ";
output += data.doi;
output += ".<br/>";
output += "<b>Abstract:</b><br/>";
output += data.abstract;
output += "<br/>";
document.getElementById("study_info").innerHTML=output;
};
</script>
</html>