{% extends "base.html" %} {% block content %}

{{ url }}

N={{ n_pre }} Total participants
n={{ n_pre - n_post }} Participants removed in pre-screening
n={{ n_post }} Participants included

Preconditions

Test of normality (KS):

{% for stimulus, p in ks.items() %} Condition {{ stimulus }}: p = {{ p | p_val_format }} {{ significance_stars(p) | safe }}
{% endfor %}

Test of equal variances:

Levene test: p = {{ lev_p | p_val_format }} {{ significance_stars(lev_p) | safe }}

ANOVA

{{ aov }}

Pairwise Comparison Test

{{ pair }}

{% endblock %}