Private
Public Access
1
0

added weighted average - rScore now uses weighted average

This commit is contained in:
Sander Roosendaal
2018-02-24 14:23:48 +01:00
parent f4a66a78cf
commit 57eee137ce
4 changed files with 27 additions and 7 deletions

View File

@@ -9,7 +9,9 @@
<h1>Workout Statistics for {{ workout.name }}</h1>
<p>
This is an experimental page which just lists a bunch of statistics for
your workout. This page is under rapid development.
your workout. The mean is of a metric is the mean with equal weight for
each stroke. The time weighted mean takes into account the stroke
duration.
</p>
<div class="grid_2 alpha">
<p>
@@ -55,6 +57,8 @@
<tbody>
<tr>
<td>Mean</td><td>{{ value.mean|floatformat:-2 }}</td>
</tr><tr>
<td>Time Weighted Mean</td><td> {{ value.wmean|floatformat:-2 }}</td>
</tr><tr>
<td>Minimum</td><td>{{ value.min|floatformat:-2 }}</td>
</tr><tr>