Relatório de Modelos

{% for report in reports_by_score %}

Score Target: {{ report.score_target }}

Estatísticas dos Modelos

{% for model in report.score_described %} {% endfor %}
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) }}

Pipeline de Testes A/B

{% if "check_normality_with_shapiro" in report.ab_tests.pipeline_track %}

Shapiro-Wilk

{% for test in report.ab_tests.shapirowilk %} {% if test.stat is none and test.p_value is none%} {% else %} {% endif %} {% endfor %}
Contexto Stat p-value Normal?
{{ test.context }} NaN NaN {{ 'Sim' if test.is_normal else 'Não' }}{{ test.context }} {{ '%.4f' | format(test.stat) }} {{ '%.4e' | format(test.p_value) }} {{ 'Sim' if test.is_normal else 'Não' }}
{% endif %} {% if "check_homocedasticity_with_levene" in report.ab_tests.pipeline_track %}

Levene

{% if report.ab_tests.levene.stat is none and report.ab_tests.levene.p_value is none%}

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 %}

Bartlett

{% if report.ab_tests.bartlett.stat is none and report.ab_tests.bartlett.p_value is none%}

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 %}

Kruskal-Wallis

{% if report.ab_tests.kurskalwallis.stat is none or report.ab_tests.kurskalwallis.p_value is none%}

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 %}

Mann-Whitney

{% for test in report.ab_tests.mannwhitney %} {% endfor %}
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' }}
{% endif %} {% endfor %}

Conclusões de Significância

Melhor Modelo