Private
Public Access
1
0

added HR drift, normalized power, training score

This commit is contained in:
Sander Roosendaal
2017-05-12 14:19:50 +02:00
parent e1893ab4ff
commit 29f84d6e25
3 changed files with 85 additions and 1 deletions

View File

@@ -74,6 +74,34 @@
{% endif %}
</div>
<div class="grid_8 omega">
{% if otherstats %}
<div class="grid_4 alpha">
&nbsp;
</div>
<div class="grid_4 omega">
<h2>Other Stats</h2>
<table width="100%" class="listtable">
<thead>
<tr>
<th>Metric</th>
<th>Value</th>
<th>Unit</th>
</tr>
</thead>
<tbody>
{% for key, value in otherstats.items %}
<tr>
<td>{{ value.verbose_name }}</td>
<td>{{ value.value }}</td>
<td>{{ value.unit }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
<div class="grid_8 alpha">
{% if cordict %}
<h2> Correlation matrix</h2>
<p>This matrix indicates a positive (+) or negative (-) correlation between two parameters. The Spearman correlation coefficient has values between +1 and -1. Positive correlation between two metrics means that if one metric increases, the other value is also likely to increase. Negative is the opposite. The further from zero, the higher the likelyhood.
@@ -112,6 +140,7 @@
</table>
{% endif %}
</div>
</div>
{% endblock %}