{% if stats %}
| Metric | Mean | Minimum | 25% | Median | 75% | Maximum | Standard Deviation |
|---|---|---|---|---|---|---|---|
| {{ value.verbosename }} | {{ value.mean|floatformat }} | {{ value.min|floatformat }} | {{ value.firstq|floatformat }} | {{ value.median|floatformat }} | {{ value.thirdq|floatformat }} | {{ value.max|floatformat }} | {{ value.std|floatformat }} |
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 }}
{% elif value > 0.1 %}
{{ value|floatformat }}
{% elif value < -0.5 %}
{{ value|floatformat }}
{% elif value < -0.1 %}
{{ value|floatformat }}
{% else %}
{% endif %}
|
{% endfor %}