View source: R/facets_mode_methods.R
| summary.mfrm_facets_run | R Documentation |
Summarize a legacy-compatible workflow run
## S3 method for class 'mfrm_facets_run'
summary(object, digits = 3, top_n = 10, ...)
object |
Output from |
digits |
Number of digits for numeric rounding in summaries. |
top_n |
Maximum rows shown in nested preview tables. |
... |
Passed through to nested summary methods. |
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 fit and diagnostics
An object of class summary.mfrm_facets_run.
overview: convergence, information criteria, and scale size.
mapping: sanity check for auto/explicit column mapping.
fit / diagnostics: drill-down summaries for reporting decisions.
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.
run_mfrm_facets(), summary.mfrm_fit(), mfrmr_workflow_methods,
summary()
toy <- load_mfrmr_data("example_core")
toy_small <- toy[toy$Person %in% unique(toy$Person)[1:12], , drop = FALSE]
out <- run_mfrm_facets(
data = toy_small,
person = "Person",
facets = c("Rater", "Criterion"),
score = "Score",
maxit = 10
)
s <- summary(out)
s$overview[, c("Model", "Method", "Converged")]
s$mapping
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.