Summarize a facet-quality dashboard
Usage
# S3 method for class 'mfrm_facet_dashboard'
summary(object, digits = 3, top_n = 10, ...)Arguments
- object
Output from
facet_quality_dashboard().- digits
Number of digits for printed numeric values.
- top_n
Number of flagged levels to preview.
- ...
Reserved for generic compatibility.
Examples
if (FALSE) { # interactive()
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score", method = "JML", maxit = 30)
diag <- diagnose_mfrm(fit, residual_pca = "none")
summary(facet_quality_dashboard(fit, diagnostics = diag))
}