| Model ID | Mean | Std | Median | Min | Max | Mode |
|---|---|---|---|---|---|---|
| {{ model.model_index }} | {{ '%.4f' | format(model.mean) }} | {{ '%.4f' | format(model.std) }} | {{ '%.4f' | format(model.median) }} | {{ '%.4f' | format(model.minimum) }} | {{ '%.4f' | format(model.maximum) }} | {{ '%.4f' | format(model.mode) }} |
| Contexto | Stat | p-value | Normal? | ||||
|---|---|---|---|---|---|---|---|
| {{ test.context }} | NaN | NaN | {{ 'Sim' if test.is_normal else 'Não' }} | {% else %}{{ test.context }} | {{ '%.4f' | format(test.stat) }} | {{ '%.4e' | format(test.p_value) }} | {{ 'Sim' if test.is_normal else 'Não' }} | {% endif %}
Stat: NaN | p-value: NaN | Homocedástico: {{ 'Sim' if report.ab_tests.levene.is_homoscedastic else 'Não' }}
{% else %}Stat: {{ '%.2f' | format(report.ab_tests.levene.stat) }} | p-value: {{ '%.4e' | format(report.ab_tests.levene.p_value) }} | Homocedástico: {{ 'Sim' if report.ab_tests.levene.is_homoscedastic else 'Não' }}
{% endif %} {% endif %} {% if "perform_bartlett" in report.ab_tests.pipeline_track %}Stat: NaN | p-value: NaN | Homocedástico: {{ 'Sim' if report.ab_tests.bartlett.is_homoscedastic else 'Não' }}
{% else %}Stat: {{ '%.2f' | format(report.ab_tests.bartlett.stat) }} | p-value: {{ '%.4e' | format(report.ab_tests.bartlett.p_value) }} | Homocedástico: {{ 'Sim' if report.ab_tests.bartlett.is_homoscedastic else 'Não' }}
{% endif %} {% endif %} {% if "perform_kurskalwallis" in report.ab_tests.pipeline_track %}Stat: NaN | p-value: NaN | Significativo: {{ 'Sim' if report.ab_tests.kurskalwallis.is_significant else 'Não' }}
{% else %}Stat: {{ '%.2f' | format(report.ab_tests.kurskalwallis.stat) }} | p-value: {{ '%.4e' | format(report.ab_tests.kurskalwallis.p_value) }} | Significativo: {{ 'Sim' if report.ab_tests.kurskalwallis.is_significant else 'Não' }}
{% endif %} {% endif %} {% if "perform_mannwhitney" in report.ab_tests.pipeline_track %}| Comparação | Stat | p-value | Significativo? |
|---|---|---|---|
| {{ test.context }} | {{ '%.2f' | format(test.stat) }} | {{ '%.4e' | format(test.p_value) }} | {{ 'Sim' if test.is_significant else 'Não' }} |