Takes an ato_tbl or data frame of ACCU project records (from
cer_accu_projects()), joins the method integrity scorecard,
and aggregates by integrity tier. Emits a warning if contested
or under-review methods contribute materially to the total so
the analyst cannot silently aggregate them into a single
headline figure.
Value
A data frame with one row per integrity tier and
columns integrity_tier, projects, accus_issued_sum,
share_pct.
Examples
# \donttest{
op <- options(cer.cache_dir = tempdir())
try({
p <- cer_accu_projects()
cer_accu_aggregate(p)
})
options(op)
# }