Mercurial > hg > webaudioevaluationtool
annotate analysis/index.html @ 2181:419921eae214
Added box plot chart to analysis.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Thu, 24 Mar 2016 10:36:38 +0000 |
parents | 749adcb68e99 |
children | f22a6240fb51 |
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> |
nickjillings@2131 | 7 </head> |
nickjillings@2131 | 8 <body> |
nickjillings@2131 | 9 <h1>Web Audio Evaluation Toolbox: Analysis</h1> |
nickjillings@2135 | 10 <button onclick="chartContext.clear();">Clear Charts</button> |
nickjillings@2135 | 11 <div id="test-charts"> |
nickjillings@2135 | 12 <p>Charts per test</p> |
nickjillings@2135 | 13 <button onclick="chartContext.drawTestMean();">Means</button> |
nickjillings@2181 | 14 <button onclick="chartContext.drawTestBoxplot();">Means</button> |
nickjillings@2135 | 15 </div> |
nickjillings@2135 | 16 <div id="page-charts"> |
nickjillings@2135 | 17 <p>Charts per test page</p> |
nickjillings@2135 | 18 <button onclick="chartContext.drawPageMean();">Means</button> |
nickjillings@2135 | 19 </div> |
nickjillings@2135 | 20 <div id="element-charts"> |
nickjillings@2135 | 21 <p>Charts per element</p> |
nickjillings@2135 | 22 <button onclick="chartContext.drawElementHistogram();">Histogram</button> |
nickjillings@2135 | 23 </div> |
nickjillings@2135 | 24 |
nickjillings@2131 | 25 <div id="test-pages"></div> |
nickjillings@2131 | 26 </body> |
nickjillings@2131 | 27 </html> |