Creates a summary table of all validation sections in the report, showing section status, result counts, and notes.
Usage
# S3 method for class 'measure_validation_report'
summary(object, ...)Value
A tibble with columns:
section: Section namestatus: Pass/fail/info statusn_results: Number of results in sectionnotes: Additional notes
Returns NULL invisibly if the report has no validation sections.
Examples
# Create a report with some sections
report <- measure_validation_report(
title = "Test Report",
specificity = "No interference observed"
)
summary(report)
#>
#> ── Validation Report Summary ───────────────────────────────────────────────────
#> Method: Not specified
#> Date: 2026-01-01
#>
#> # A tibble: 1 × 4
#> section status n_results notes
#> <chr> <chr> <int> <chr>
#> 1 Specificity/Selectivity info NA ""
#>
#> ✔ All sections meet acceptance criteria