{% if model_info %}

Model Information

{% if model_info.model_type %}
Model Type: {{ model_info.model_type }}
{% endif %} {% if model_info.formula %}
Formula: {{ model_info.formula }}
{% endif %} {% if model_info.nobs %}
Observations: {{ model_info.nobs_formatted or model_info.nobs }}
{% endif %} {% if model_info.n_entities %}
Entities: {{ model_info.n_entities_formatted or model_info.n_entities }}
{% endif %} {% if model_info.n_periods %}
Time Periods: {{ model_info.n_periods_formatted or model_info.n_periods }}
{% endif %} {% if model_info.balanced %}
Panel Type: {% if model_info.balanced %}Balanced{% else %}Unbalanced{% endif %}
{% endif %}
{% endif %}

Tests by Category

Specification Tests

{{ summary.get('tests_failed', 0) }} / {{ summary.get('total_tests', 0) }} failed

Serial Correlation

Tests executed

Heteroskedasticity

Tests executed

Cross-Sectional Dependence

Tests executed

Quick Summary

{% if summary and summary.get('tests_failed', 0) > 0 %}

Issues Detected

Your model has failed {{ summary.get('tests_failed', 0) }} validation test(s). Review the detailed results and recommendations to address these issues.

{% else %}

Tests Completed

Validation tests have been executed. {{ summary.get('total_tests', 0) }} test(s) were run with {{ summary.get('tests_passed', 0) }} passing.

{% endif %}