| summary.mfrm_diagnostics | R Documentation |
mfrm_diagnostics object in a user-friendly formatSummarize an mfrm_diagnostics object in a user-friendly format
## S3 method for class 'mfrm_diagnostics'
summary(object, digits = 3, top_n = 10, ...)
object |
Output from |
digits |
Number of digits for printed numeric values. |
top_n |
Number of highest-absolute-Z fit rows to keep. |
... |
Reserved for generic compatibility. |
This method returns a compact diagnostics summary designed for quick review:
design overview (observations, persons, facets, categories, subsets)
global fit statistics
approximate reliability/separation by facet
top facet/person fit rows by absolute ZSTD
counts of flagged diagnostics (unexpected, displacement, interactions)
An object of class summary.mfrm_diagnostics with:
overview: design-level counts and residual-PCA mode
overall_fit: global fit block
reliability: facet-level separation/reliability summary
top_fit: top |ZSTD| rows
flags: compact flag counts for major diagnostics
notes: short interpretation notes
overview: analysis scale, subset count, and residual-PCA mode.
overall_fit: global fit indices.
reliability: facet separation/reliability block, including model and
real bounds when available.
top_fit: highest |ZSTD| elements for immediate inspection.
flags: compact counts for key warning domains.
Run diagnostics with diagnose_mfrm().
Review summary(diag) for major warnings.
Follow up with dedicated tables/plots for flagged domains.
diagnose_mfrm(), summary.mfrm_fit()
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")
summary(diag)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.