{% extends 'common/base_v2.html' %} {% block summary %}

Quantile Regression Diagnostics

Health Score
{{ health.score_pct|default('--') }}
Overall Status
{{ health.status|default('--') }}
Tests Run
{{ tests|length if tests else 0 }}
Tests Passed
{{ tests|selectattr('status', 'equalto', 'pass')|list|length if tests else 0 }}
{% if charts and charts.health_gauge %}
{{ charts.health_gauge|safe }}
{% endif %}
{% endblock %} {% block content %}
{% if recommendations %} {% endif %}

Diagnostic Test Results

{% if tests %} {% for test in tests %} {% endfor %}
Test Status Statistic P-value Message
{{ test.name }} {{ test.status_icon|safe }} {{ test.status }} {{ test.statistic|round(4) }} {{ test.pvalue|pvalue_format if test.pvalue is not none else '--' }} {{ test.message|default('--') }}
{% else %}

No diagnostic tests available.

{% endif %} {% if charts and charts.test_results_chart %}

Test Results Visualization

{{ charts.test_results_chart|safe }}
{% endif %}
{% if recommendations %}

Recommendations

{% for rec in recommendations %}
{{ rec }}
{% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}