{% extends "one_column.html" %} {% block title %} Experiment Details {% endblock %} {% block first_column %} {% if has_access %}

{{ experiment.name }}: Experiment Details

Results

Download csv

{% if experiment.participants %} {% for treatment in treatments %} {% endfor %} {% for participant in experiment.participants %} {% set participant_number = loop.index0 %} {% for treatment in treatments %} {% endfor %} {% endfor %} {% for treatment in treatments %} {% endfor %} {% for treatment in treatments %} {% endfor %}
Participant {{ treatment.name }}
{{ participant }} {{ treatment.scores[participant_number] }} {{ experiment.feedback[loop.index0] }}
Average: {{ treatment.scores|average}}
Variance: {{ treatment.scores|variance}}

Sign-test P Values

The Rows indicate the treatment in question and the columns are the treatments they are being compared to. A low p value indicates that the row treatment is likely better than the column treatment.

{% for treatment in treatments %} {% endfor %} {% for t1 in treatments %} {% for t2 in treatments %} {% endfor %} {% endfor %}
-- {{ treatment.name }}
{{ t1.name }} {% if t1.name != t2.name %} {{ t1.scores|sign_test(t2.scores) }} {% endif %}
{% else %}

No one has completed this experiment yet, there are no results to display.

{% endif %} {% else %}

Permission Denied

Sorry, but you are neither the owner of this experiment nor an administrator, please contact the owner ( {{ experiment.owner }}) directly for details about this experiment.

{% endif %} {% endblock %}