{% extends "one_column.html" %} {% block title %} Experiment Details {% endblock %} {% block first_column %} {% if has_access %}
| Participant | {% for treatment in treatments %}{{ treatment.name }} | {% endfor %}|
|---|---|---|
| {{ participant }} | {% set participant_number = loop.index0 %} {% for treatment in treatments %}{{ treatment.scores[participant_number] }} | {% endfor %}{{ experiment.feedback[loop.index0] }} |
| Average: | {% for treatment in treatments %}{{ treatment.scores|average}} | {% endfor %}|
| Variance: | {% for treatment in treatments %}{{ treatment.scores|variance}} | {% endfor %}
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 %}{{ treatment.name }} | {% endfor %}
|---|---|
| {{ t1.name }} | {% for t2 in treatments %}{% if t1.name != t2.name %} {{ t1.scores|sign_test(t2.scores) }} {% endif %} | {% endfor %}
No one has completed this experiment yet, there are no results to display.
{% endif %} {% else %}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 %}