Mercurial > hg > webaudioevaluationtool
annotate analysis/index.html @ 1915:8d8f07be23d7
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 | 41de3c8f9ee4 |
children | 6c819878ac85 |
rev | line source |
---|---|
nickjillings@1864 | 1 <html lang="en"> |
nickjillings@1864 | 2 <head> |
nickjillings@1864 | 3 <meta charset="utf-8" /> |
nickjillings@1868 | 4 <link rel='stylesheet' href="analysis.css" type="text/css"/> |
nickjillings@1864 | 5 <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> |
nickjillings@1864 | 6 <script type="text/javascript" src="analysis.js"></script> |
nickjillings@1864 | 7 </head> |
nickjillings@1864 | 8 <body> |
nickjillings@1864 | 9 <h1>Web Audio Evaluation Toolbox: Analysis</h1> |
nickjillings@1868 | 10 <button onclick="chartContext.clear();">Clear Charts</button> |
nickjillings@1868 | 11 <div id="test-charts"> |
nickjillings@1868 | 12 <p>Charts per test</p> |
nickjillings@1868 | 13 <button onclick="chartContext.drawTestMean();">Means</button> |
nickjillings@1915 | 14 <button onclick="chartContext.drawTestBoxplot();">Boxplot</button> |
nickjillings@1868 | 15 </div> |
nickjillings@1868 | 16 <div id="page-charts"> |
nickjillings@1868 | 17 <p>Charts per test page</p> |
nickjillings@1868 | 18 <button onclick="chartContext.drawPageMean();">Means</button> |
nickjillings@1868 | 19 </div> |
nickjillings@1868 | 20 <div id="element-charts"> |
nickjillings@1868 | 21 <p>Charts per element</p> |
nickjillings@1868 | 22 <button onclick="chartContext.drawElementHistogram();">Histogram</button> |
nickjillings@1868 | 23 </div> |
nickjillings@1868 | 24 |
nickjillings@1864 | 25 <div id="test-pages"></div> |
nickjillings@1864 | 26 </body> |
nickjillings@1864 | 27 </html> |