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

{{ url }}

Numer of participants: {{ n_post }} ({{ n_pre - n_post }} outliers removed)

Preconditions

Test of normality (KS):

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

Test of equal variances:

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

ANOVA

{{ aov }}

Pairwise Comparison Test

{{ pair }}

{% endblock %}