{% extends "base.html" %}
{% load url %}
{% load workstations %}
{% load reader_study_tags %}
{% load static %}
{% load meta_attr %}
{% block breadcrumbs %}
- Reader
Studies
- {{ object }}
- Statistics
{% endblock %}
{% block content %}
{{ object.title }} Statistics
Statistics per case
| DisplaySet ID |
Total score / max score |
Average score |
{% for question in object.statistics.questions %}
{{ question }} (GT) |
{% endfor %}
View case |
{% for entry in object.statistics.scores_by_case %}
| {{ entry.id }} |
{{ entry.sum }} / {{ object.statistics.max_score_cases }} |
{{ entry.avg|floatformat:4 }} |
{% for question in object.statistics.questions %}
{% get_ground_truth object entry.id question as ground_truth %}
{{ ground_truth }} |
{% endfor %}
|
{% endfor %}
Statistics per question
| Question |
Total score / max score |
Average score |
{% for entry in object.statistics.scores_by_question %}
| {{ entry.question__question_text }} |
{{ entry.score__sum }} / {{ object.statistics.max_score_questions }} |
{{ entry.score__avg|floatformat:4 }} |
{% endfor %}
{% endblock %}
{% block script %}
{{ block.super }}
{% include 'workstations/partials/session-control.html' %}
{% endblock %}