Interactive Visualizations

Explore validation test results through interactive charts. Hover over data points for detailed information, zoom in/out, and pan to focus on specific areas of interest.

{% if charts %}

Test Results by Category

Stacked bar chart showing the number of passed and failed tests in each category.

{{ charts.test_overview|safe }}

P-value Distribution

Distribution of p-values across all tests (log scale). Tests with p-values below the significance threshold (α = 0.05) indicate potential issues.

{{ charts.pvalue_distribution|safe }}
Note: The red dashed line represents the 5% significance level (α = 0.05). Tests below this line reject the null hypothesis.

Test Statistics

Scatter plot of test statistics for all validation tests. Each point represents a test result.

{{ charts.test_statistics|safe }}

Chart Interactions

{% else %}
No charts available. Charts will be displayed when validation tests are run.
{% endif %}