| reference_case_audit | R Documentation |
Build a package-native reference audit for report completeness
reference_case_audit(
fit,
diagnostics = NULL,
bias_results = NULL,
reference_profile = c("core", "compatibility"),
include_metrics = TRUE,
top_n_attention = 15L
)
fit |
Output from |
diagnostics |
Optional output from |
bias_results |
Optional output from |
reference_profile |
Audit profile. |
include_metrics |
If |
top_n_attention |
Number of lowest-coverage components to keep in
|
This function repackages the internal contract audit into package-native terminology so users can review output completeness without needing external manual/table numbering. It reports:
component-level schema coverage
numerical consistency checks for derived report tables
the highest-priority attention items for follow-up
It is an internal completeness audit for package-native outputs, not an external validation study.
Use reference_profile = "core" for ordinary mfrmr workflows.
Use reference_profile = "compatibility" only when you explicitly want to
inspect the compatibility layer.
An object of class mfrm_reference_audit.
overall: one-row internal audit summary with schema coverage and metric
pass rate.
component_summary: per-component coverage summary.
attention_items: quickest list of components needing review.
metric_summary / metric_checks: numerical consistency status.
facets_parity_report(), diagnose_mfrm(), build_fixed_reports()
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score", method = "JML", maxit = 25)
diag <- diagnose_mfrm(fit, residual_pca = "none")
audit <- reference_case_audit(fit, diagnostics = diag)
summary(audit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.