{% extends "nexus/module.html" %} {% load humanize %} {% load experiment_helpers %} {% block head %} {{ block.super }} {% endblock %} {% block content %}
{{ experiment.description }}
{% endif %}control ({{ control_participants|intcomma }}) | {% for alternative, participants in alternatives.items %} {% if alternative != 'control' %}{{ alternative }} ({{ participants|intcomma }}) | {% endif %} {% endfor %}|||
{{ goal }} | {{ data.control.conversions|intcomma }} ({{ data.control.conversion_rate|floatformat:2 }}%) | {% for alternative_name, results in data.alternatives.items %} {% if alternative_name != 'control' %}{{ results.conversions|intcomma }} ({{ results.conversion_rate|floatformat:2 }}%) | {% with results.improvement as improvement %} {% if improvement != None %} {% if improvement < 0 %} {% else %} {% endif %} {{ improvement|floatformat:2 }} % {% else %} N/A {% endif %} {% endwith %} | {% with results.confidence as confidence %} {% if confidence != None %} {% if confidence >= 95 %} {% endif %} {% if confidence < 95 and confidence >= 90 %} {% endif %} {% if confidence < 90 %} {% endif %} {{ confidence|stringformat:"d" }} % {% else %} N/A {% endif %} {% endwith %} | {% endif %} {% endfor %}