{% extends "base.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}Workout Statistics{% endblock %} {% block content %}
This is an experimental page which just lists a bunch of statistics for your workout. This page is under rapid development.
| Metric | Value |
|---|---|
| Mean | {{ value.mean|floatformat:-2 }} |
| Minimum | {{ value.min|floatformat:-2 }} |
| 25% | {{ value.firstq|floatformat:-2 }} |
| Median | {{ value.median|floatformat:-2 }} |
| 75% | {{ value.thirdq|floatformat:-2 }} |
| Maximum | {{ value.max|floatformat:-2 }} |
| Standard Deviation | {{ value.std|floatformat:-2 }} |
rPower: Equivalent steady state power for the duration of the workout.
Heart Rate Drift: Comparing heart rate normalized for average power for the first and second half of the workout
rScore: Score based on rPower and workout duration to estimate training effect
| Metric | Value | Unit |
|---|---|---|
| {{ value.verbose_name }} | {{ value.value }} | {{ value.unit }} |
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.
| {% for key,value in cordict.items %} | {{ key }} |
{% endfor %}
|---|---|
| {{ key }} | {% for key2,value in thedict.items %}
{% if value > 0.5 %}
{{ value|floatformat:-1 }}
{% elif value > 0.1 %}
{{ value|floatformat:-1 }}
{% elif value < -0.5 %}
{{ value|floatformat:-1 }}
{% elif value < -0.1 %}
{{ value|floatformat:-1 }}
{% else %}
{% endif %}
|
{% endfor %}