{% extends "newbase.html" %} {% load static %} {% load rowerfilters %} {% block title %}Workout Statistics{% endblock %} {% block main %}

{% if workout|previousworkout:rower.user %} Previous  {% endif %} {% if workout|nextworkout:rower.user %} Next {% endif %}

Workout Statistics for {{ workout.name }}

  • This page lists a bunch of statistics for 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.

  • {% if otherstats %}
  • Workout Metrics

    {% for key, value in otherstats.items %} {% endfor %}
    Metric Value Unit
    {{ value.verbose_name }} {{ value.value }} {{ value.unit }}
  • Gold Medal Standard: For rowing workouts, the best performance, relative to world class rowers of your age, gender and weight category, found in this workout. This metric uses your power data over time and compares them with the power that the best rowers of your age, gender and weight category can hold over time.

    Gold Medal Standard Duration: The time interval over which your best performance in this workout was achieved.

    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

    TRIMP: TRaining IMPact. A way to combine duration and heart rate into a single number.

    rScore: Score based on rPower and workout duration to estimate training effect

    rScore (HR): Score based on heart rate, designed to give values comparable to rScore. Used instead of rScore for workouts without power data.

    rScore (SPM): Score based on stroke rate, designed to give values comparable to rScore. Used instead of rScore for workouts without power or heart rate data.

  • {% endif %}
  • {% csrf_token %} {% if workstrokesonly == True %} {% else %} {% endif %}
  • {% if stats %}
  • Statistics

    {% for key, value in stats.items %} {% if value.std > 10 %} {% elif value.std > 1 %} {% else %} {% endif %} {% endfor %}
    Metric Mean Time Weighted Mean Minimum 25% Median 75% Maximum Standard Deviation
    {{ value.verbosename }} {{ value.mean|floatformat:0 }} {{ value.wmean|floatformat:0 }} {{ value.min|floatformat:0 }} {{ value.firstq|floatformat:0 }} {{ value.median|floatformat:0 }} {{ value.thirdq|floatformat:0 }} {{ value.max|floatformat:0 }} {{ value.std|floatformat:0 }}{{ value.verbosename }} {{ value.mean|floatformat:-1 }} {{ value.wmean|floatformat:-1 }} {{ value.min|floatformat:-1 }} {{ value.firstq|floatformat:-1 }} {{ value.median|floatformat:-1 }} {{ value.thirdq|floatformat:-1 }} {{ value.max|floatformat:-1 }} {{ value.std|floatformat:-1 }}{{ value.verbosename }} {{ value.mean|floatformat:-2 }} {{ value.wmean|floatformat:-2 }} {{ value.min|floatformat:-2 }} {{ value.firstq|floatformat:-2 }} {{ value.median|floatformat:-2 }} {{ value.thirdq|floatformat:-2 }} {{ value.max|floatformat:-2 }} {{ value.std|floatformat:-2 }}
  • {% endif %} {% if cordict %}
  • Correlation matrix

    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 %} {% endfor %} {% for key, thedict in cordict.items %} {% for key2,value in thedict.items %} {% endfor %} {% endfor %}
     
    {{ key }}
    {{ key }} {% 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 %}
  • {% endif %}
{% endblock %} {% block sidebar %} {% include 'menu_workout.html' %} {% endblock %}