| summary.mfrm_fit | R Documentation |
mfrm_fit object in a user-friendly formatSummarize an mfrm_fit object in a user-friendly format
## S3 method for class 'mfrm_fit'
summary(object, digits = 3, top_n = 5, ...)
object |
Output from |
digits |
Number of digits for printed numeric values. |
top_n |
Number of extreme facet/person rows shown in summaries. |
... |
Reserved for generic compatibility. |
This method provides a compact, human-readable summary oriented to reporting. It returns a structured object and prints:
model fit overview (N, LogLik, AIC/BIC, convergence)
facet-level estimate distribution (mean/SD/range)
person measure distribution
step/threshold checks
high/low person measures and extreme facet levels
An object of class summary.mfrm_fit with:
overview: global model/fit indicators
facet_overview: per-facet estimate distribution summary
person_overview: person-measure distribution summary
step_overview: threshold/step diagnostics
top_person: highest/lowest person measures
top_facet: extreme facet-level estimates
notes: short interpretation notes
overview: convergence and information criteria.
facet_overview: per-facet spread and range of estimates.
person_overview: distribution of person measures.
step_overview: threshold spread and monotonicity checks.
top_person / top_facet: extreme estimates for quick triage.
Fit model with fit_mfrm().
Run summary(fit) for first-pass diagnostics.
Continue with diagnose_mfrm() for element-level fit checks.
fit_mfrm(), diagnose_mfrm()
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score", method = "JML", maxit = 25)
summary(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.