This table shows detailed results for all {{ tests|length }} validation tests performed on your panel data model. Tests marked as "REJECT" indicate potential issues that may require attention.
{% set spec_tests = tests|selectattr('category', 'equalto', 'Specification')|list %} {% if spec_tests %}Tests for model specification, including choice between Fixed Effects and Random Effects.
| Test Name | Statistic | P-value | DF | Result | Conclusion |
|---|---|---|---|---|---|
| {{ test.name }} | {{ test.statistic_formatted }} | {{ test.pvalue_formatted }} {% if test.significance %} {{ test.significance }} {% endif %} | {{ test.df or 'N/A' }} | {{ test.result }} | {{ test.conclusion }} |
Tests for autocorrelation in residuals across time periods.
| Test Name | Statistic | P-value | DF | Result | Conclusion |
|---|---|---|---|---|---|
| {{ test.name }} | {{ test.statistic_formatted }} | {{ test.pvalue_formatted }} {% if test.significance %} {{ test.significance }} {% endif %} | {{ test.df or 'N/A' }} | {{ test.result }} | {{ test.conclusion }} |
Tests for non-constant variance in residuals.
| Test Name | Statistic | P-value | DF | Result | Conclusion |
|---|---|---|---|---|---|
| {{ test.name }} | {{ test.statistic_formatted }} | {{ test.pvalue_formatted }} {% if test.significance %} {{ test.significance }} {% endif %} | {{ test.df or 'N/A' }} | {{ test.result }} | {{ test.conclusion }} |
Tests for correlation across entities (cross-sectional units).
| Test Name | Statistic | P-value | DF | Result | Conclusion |
|---|---|---|---|---|---|
| {{ test.name }} | {{ test.statistic_formatted }} | {{ test.pvalue_formatted }} {% if test.significance %} {{ test.significance }} {% endif %} | {{ test.df or 'N/A' }} | {{ test.result }} | {{ test.conclusion }} |