Mercurial > hg > webaudioevaluationtool
annotate analysis/index.html @ 2135:9691be359d6a
Created mean test/page plots, element histogram plots. Latex and tables included. Can download charts as PNG
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Wed, 24 Feb 2016 13:03:08 +0000 |
parents | a12f1720c321 |
children | 27dc7a36ecd3 83b439322229 |
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@2135 | 14 </div> |
nickjillings@2135 | 15 <div id="page-charts"> |
nickjillings@2135 | 16 <p>Charts per test page</p> |
nickjillings@2135 | 17 <button onclick="chartContext.drawPageMean();">Means</button> |
nickjillings@2135 | 18 </div> |
nickjillings@2135 | 19 <div id="element-charts"> |
nickjillings@2135 | 20 <p>Charts per element</p> |
nickjillings@2135 | 21 <button onclick="chartContext.drawElementHistogram();">Histogram</button> |
nickjillings@2135 | 22 </div> |
nickjillings@2135 | 23 |
nickjillings@2131 | 24 <div id="test-pages"></div> |
nickjillings@2131 | 25 </body> |
nickjillings@2131 | 26 </html> |