Mercurial > hg > webaudioevaluationtool
annotate analysis/index.html @ 2182:6c6086b0af82
Fixed some comment/score parser issues on PHP.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Thu, 24 Mar 2016 12:29:39 +0000 |
parents | 419921eae214 |
children | 6c819878ac85 |
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@2182 | 14 <button onclick="chartContext.drawTestBoxplot();">Boxplot</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> |