view analysis/index.html @ 1275:b4a0244bf5ed

Analysis: Percentile calculation interpolates. Use mean, not 50th percentile for box plot.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Thu, 24 Mar 2016 13:01:52 +0000
parents f22a6240fb51
children 6c819878ac85
line wrap: on
line source
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <link rel='stylesheet' href="analysis.css" type="text/css"/>
        <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
        <script type="text/javascript" src="analysis.js"></script>
    </head>
    <body>
        <h1>Web Audio Evaluation Toolbox: Analysis</h1>
        <button onclick="chartContext.clear();">Clear Charts</button>
        <div id="test-charts">
            <p>Charts per test</p>
            <button onclick="chartContext.drawTestMean();">Means</button>
            <button onclick="chartContext.drawTestBoxplot();">Boxplot</button>
        </div>
        <div id="page-charts">
            <p>Charts per test page</p>
            <button onclick="chartContext.drawPageMean();">Means</button>
        </div>
        <div id="element-charts">
            <p>Charts per element</p>
            <button onclick="chartContext.drawElementHistogram();">Histogram</button>
        </div>
        
        <div id="test-pages"></div>
    </body>
</html>