# | Code | Naam | x | n | σ | xoud | |
{{ counter|length }} | {% if counter.append('') %}{% endif %} {# Increment counter... #}{{ course.code }} | {{ course.name }} | {{ "{0:.1f}".format(course.stats.course.mean) }} | {{ course.stats.course.n }} | {{ "{0:.1f}".format(course.stats.course.std) }} | {% if course.old_stats %}{{ "{0:.1f}".format(course.old_stats.course.mean) }}{% endif %} |
{% if course.old_stats %}
{% set diff = course.stats.course.mean - course.old_stats.course.mean %}
{% set significant = not (course.stats.course.n <= 5 or course.old_stats.course.n <= 5) %}
{% if diff > 1 and significant %}
▲▲
{% elif diff > 1 and not significant %}
▲▲
{% elif diff >= 0.4 and significant %}
▲
{% elif diff >= 0.4 and not significant %}
▲
{% elif diff < -1 and significant %}
▼▼
{% elif diff < -1 and not significant %}
▼▼
{% elif diff <= -0.4 and significant %}
▼
{% elif diff <= -0.4 and not significant %}
▼
{% endif %}
{% else %}
{% if course.is_new %}!{% else %}?{% endif %}
{% endif %}
|
▲ | → | 0.4 ≤ δ ≤ 1.0 |
▲▲ | → | δ > 1.0 |
▼ grijs | → | niet significant aantal deelnemers |
▼ kleur | → | significant aantal deelnemers |
! | → | cursus nieuw in {{ year }}-{{ year + 1 }} |
? | → | geen enquêteresultaten uit {{ year - 1 }}-{{ year }} |