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
- Hover: Move your mouse over data points to see detailed information
- Zoom: Click and drag to zoom into a region, or use the zoom buttons
- Pan: After zooming, click and drag to pan around
- Reset: Click the "Reset axes" button to restore the original view
- Export: Use the camera icon to download the chart as a PNG image
{% else %}
No charts available. Charts will be displayed when validation tests are run.
{% endif %}