{% macro testresult_detail_table(tr, inline=false) %}
| Property | Value |
|---|---|
| Name | {{ tr.name }} |
| Reject Null | {{ tr.reject_null }} |
| Comparison to Target | {{ tr.comparison_to_target }} |
| Confidence | {{ tr.confidence }} |
| Observed Proportion | {{ '%.3g' | format(tr.observed_proportion) }} |
| Observed Numerator | {{ tr.observed_numerator }} |
| Observed Denominator | {{ tr.observed_denominator }} |
| Target Lower Bound | {{ '%.3g' | format(tr.target_lower_bound) }} |
| Target Upper Bound | {{ '%.3g' | format(tr.target_upper_bound) }} |
| Bayes Factor | {{ '%.3g' | format(tr.bayes_factor) }} |
| Comparison Name | Test Source | Reference Source | Status | Actions |
|---|---|---|---|---|
| {{ comparison.measure_key }} | {{ comparison.test_source }} | {{ comparison.ref_source }} | {{ 'PASS' if comparison.passed else 'FAIL' }} | View Details Plots |
No failing test results.
{% else %}| Comparison Name | Stratification | Bayes Factor | Direction | Expand |
|---|---|---|---|---|
| {{ tr.name }} | {% if tr.index_info %} {% for k, v in tr.index_info.items() %} {{ k }}: {{ v }}{% if not loop.last %}, {% endif %} {% endfor %} {% else %} {{ tr.name_additional }} {% endif %} | {{ '%.3g' | format(tr.bayes_factor) }} | {{ tr.comparison_to_target }} |
| Property | Value |
|---|---|
| Test Source | {{ comparison.test_source }} |
| Reference Source | {{ comparison.ref_source }} |
| Status | {{ 'PASS' if comparison.passed else 'FAIL' }} |
| Passing | {{ comparison.passing_count }} |
| Failing | {{ comparison.failing_count }} |
Overall Result: {{ "Pass" if comparison.passed else "Fail" }}
{% if comparison.overall_testresult %} {{ testresult_detail_table(comparison.overall_testresult) }} {% else %}No overall test result metadata available.
{% endif %} {% if comparison.all_testresults and comparison.all_testresults|length > 1 %} {% set comp_idx = loop.index %}| Stratifications | Status | Expand |
|---|
No plots available for this comparison.
{% endif %}