annotate analysis/index.html @ 1284:6c819878ac85
Major updates. Specification Nodes now own file (specification.js). Updating Analysis to allow filtering based on survey responses.
author |
Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
date |
Thu, 31 Mar 2016 13:31:42 +0100 |
parents |
f22a6240fb51 |
children |
760719986df3 |
rev |
line source |
n@1223
|
1 <html lang="en">
|
n@1223
|
2 <head>
|
n@1223
|
3 <meta charset="utf-8" />
|
n@1227
|
4 <link rel='stylesheet' href="analysis.css" type="text/css"/>
|
n@1223
|
5 <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
|
n@1223
|
6 <script type="text/javascript" src="analysis.js"></script>
|
n@1284
|
7 <script type="text/javascript" src="../specification.js"></script>
|
n@1223
|
8 </head>
|
n@1223
|
9 <body>
|
n@1223
|
10 <h1>Web Audio Evaluation Toolbox: Analysis</h1>
|
n@1284
|
11 <div id="test-saved"></div>
|
n@1227
|
12 <button onclick="chartContext.clear();">Clear Charts</button>
|
n@1227
|
13 <div id="test-charts">
|
n@1227
|
14 <p>Charts per test</p>
|
n@1227
|
15 <button onclick="chartContext.drawTestMean();">Means</button>
|
n@1274
|
16 <button onclick="chartContext.drawTestBoxplot();">Boxplot</button>
|
n@1227
|
17 </div>
|
n@1227
|
18 <div id="page-charts">
|
n@1227
|
19 <p>Charts per test page</p>
|
n@1227
|
20 <button onclick="chartContext.drawPageMean();">Means</button>
|
n@1227
|
21 </div>
|
n@1227
|
22 <div id="element-charts">
|
n@1227
|
23 <p>Charts per element</p>
|
n@1227
|
24 <button onclick="chartContext.drawElementHistogram();">Histogram</button>
|
n@1227
|
25 </div>
|
n@1227
|
26
|
n@1223
|
27 <div id="test-pages"></div>
|
n@1223
|
28 </body>
|
n@1223
|
29 </html> |