Mercurial > hg > webaudioevaluationtool
annotate analysis/index.html @ 2450:c602b4c69310
Hotfix: Pseudo failure in pythonServer for 3.x
author | Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk> |
---|---|
date | Tue, 02 Aug 2016 10:35:43 +0100 |
parents | 760719986df3 |
children | 464c6c6692d6 |
rev | line source |
---|---|
nickjillings@2131 | 1 <html lang="en"> |
nickjillings@2131 | 2 <head> |
nickjillings@2131 | 3 <meta charset="utf-8" /> |
nickjillings@2135 | 4 <link rel='stylesheet' href="analysis.css" type="text/css"/> |
nickjillings@2131 | 5 <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> |
nickjillings@2131 | 6 <script type="text/javascript" src="analysis.js"></script> |
nicholas@2224 | 7 <script type="text/javascript" src="../js/specification.js"></script> |
nickjillings@2131 | 8 </head> |
nickjillings@2131 | 9 <body> |
nickjillings@2131 | 10 <h1>Web Audio Evaluation Toolbox: Analysis</h1> |
nickjillings@2192 | 11 <div id="test-saved"></div> |
nickjillings@2135 | 12 <button onclick="chartContext.clear();">Clear Charts</button> |
nickjillings@2135 | 13 <div id="test-charts"> |
nickjillings@2135 | 14 <p>Charts per test</p> |
nickjillings@2135 | 15 <button onclick="chartContext.drawTestMean();">Means</button> |
nickjillings@2182 | 16 <button onclick="chartContext.drawTestBoxplot();">Boxplot</button> |
nickjillings@2135 | 17 </div> |
nickjillings@2135 | 18 <div id="page-charts"> |
nickjillings@2135 | 19 <p>Charts per test page</p> |
nickjillings@2135 | 20 <button onclick="chartContext.drawPageMean();">Means</button> |
nickjillings@2135 | 21 </div> |
nickjillings@2135 | 22 <div id="element-charts"> |
nickjillings@2135 | 23 <p>Charts per element</p> |
nickjillings@2135 | 24 <button onclick="chartContext.drawElementHistogram();">Histogram</button> |
nickjillings@2135 | 25 </div> |
nickjillings@2135 | 26 |
nickjillings@2131 | 27 <div id="test-pages"></div> |
nickjillings@2131 | 28 </body> |
nickjillings@2131 | 29 </html> |