Summarize a legacy-compatible workflow run
Source:R/facets_mode_methods.R
summary.mfrm_facets_run.RdSummarize a legacy-compatible workflow run
Usage
# S3 method for class 'mfrm_facets_run'
summary(object, digits = 3, top_n = 10, ...)Arguments
- object
Output from
run_mfrm_facets().- digits
Number of digits for numeric rounding in summaries.
- top_n
Maximum rows shown in nested preview tables.
- ...
Passed through to nested summary methods.
Details
This method returns a compact cross-object summary that combines:
model overview (
object$fit$summary)resolved column mapping
run settings (
run_info)nested summaries of
fitanddiagnostics
Interpreting output
overview: convergence, information criteria, and scale size.mapping: sanity check for auto/explicit column mapping.fit/diagnostics: drill-down summaries for reporting decisions.
Typical workflow
Run
run_mfrm_facets()to execute a one-shot pipeline.Inspect with
summary(out)for mapping and convergence checks.Review nested objects (
out$fit,out$diagnostics) as needed.
Examples
if (FALSE) { # interactive()
toy <- load_mfrmr_data("example_core")
toy_small <- toy[toy$Person %in% unique(toy$Person)[1:8], , drop = FALSE]
out <- run_mfrm_facets(
data = toy_small,
person = "Person",
facets = c("Rater", "Criterion"),
score = "Score",
maxit = 30
)
s <- summary(out)
s$overview[, c("Model", "Method", "Converged")]
s$mapping
}