{% extends "template_admin.html" %} {% block head %} {% endblock %} {% block content %}

Results

{% if not summary_stats and not categorical_stats %}

No results to display yet.

{% endif %} {% if summary_stats %}

Summary Statistics

Continuous measurements. Select a field to see its boxplot.

{% for field_name in summary_stats %} {% for n in summary_stats[field_name].n %} {% if loop.first %} {% endif %} {% endfor %} {% endfor %}
Field Condition N Min. Max. Mean Median Std. Dev. Std. Err. Variance
{{ field_name }}{{ summary_stats[field_name].condition[loop.index0] }} {{ n }} {{ summary_stats[field_name].min[loop.index0] | round(3)}} {{ summary_stats[field_name].max[loop.index0] | round(3)}} {{ summary_stats[field_name].mean[loop.index0] | round(3)}} {{ summary_stats[field_name].median[loop.index0] | round(3)}} {{ summary_stats[field_name].std[loop.index0] | round(3)}} {{ summary_stats[field_name].sem[loop.index0] | round(3)}} {{ summary_stats[field_name].var[loop.index0] | round(3)}}
{% endif %} {% if categorical_stats %}

Response Counts

Discrete responses (true/false, selections, free text). Select a field to see its histogram. Free-text "other" answers appear as their own categories.

{% for field_name in categorical_stats %} {% endfor %}
Field Distinct responses Total responses
{{ field_name }} {{ categorical_stats[field_name].categories | length }} {{ categorical_stats[field_name].total }}
{% endif %} {% endblock %}