{% extends "layout.html" %} {% block content %}
Here are a list of significant findings we have found in your data {% if count != 0 %}
{% endif %}

Note: please check the assumptions are correct with your data before accepting the result. Just because a result does not appear here, it does not mean that it is not significant. If a particular test you are looking for does not appear on this list, you can add it on your survey dashboard page.

{% if count == 0 %}

No findings at the moment! Try uploading a file and we will check it for you.

{% else %} {% for notification in notifications %}
{{ form.hidden_tag() }} {% if notification.result.variable_2 == "" %} {% set f = form.title.process_data("" + notification.result.variable_1 + ": " + notification.result.test) %} {% else %} {% set f = form.title.process_data("" + notification.result.variable_1 + "/" + notification.result.variable_2 + ": " + notification.result.test) %} {% endif %} {{ form.title(class="form-control") }} {% if notification.result.p_value == 0.0 %} {% else %} {% endif %}
Null Hypothesis Statistical Test Significance value P-Value Conclusion
{{ notification.result.null }} {{ notification.result.test }} 0.05<0.001{{ notification.result.p_value }}Reject the null hypothesis

{{ notification.result.info }}

{{ form.submit(class="btn btn-primary") }}
{% endfor %} {% endif %}
{% endblock content %}