View source: R/api-plotting-secondary.R
| plot_residual_matrix | R Documentation |
Visualizes the person x element matrix of standardized residuals
from diagnose_mfrm() as a heatmap. Complements
plot_guttman_scalogram() (which shows raw responses) by exposing
the residual structure directly: large positive cells show
under-prediction, negative cells over-prediction.
plot_residual_matrix(
fit,
diagnostics = NULL,
facet = "Rater",
top_n_persons = 40L,
preset = c("standard", "publication", "compact", "monochrome"),
draw = TRUE
)
fit |
An |
diagnostics |
Optional |
facet |
Facet whose levels become the column axis (default
|
top_n_persons |
Cap on the number of rows. Defaults to 40 to keep the figure legible; persons are kept by largest absolute residual mean. |
preset |
Visual preset. |
draw |
If |
An mfrm_plot_data whose data slot bundles the residual
matrix (rows = Person, columns = facet level) and the long-form
obs table.
plot_guttman_scalogram(), plot_unexpected(),
mfrmr_visual_diagnostics
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score",
method = "JML", maxit = 30)
p <- plot_residual_matrix(fit, top_n_persons = 12, draw = FALSE)
dim(p$data$matrix)
# Look for: cell values within ~|2| are routine; |residual| > 2 is
# misfit at the 5% level and |residual| > 3 at the 1% level
# (Wright & Linacre 1994). Persons with multiple high-magnitude
# cells across the same facet level point at scoring drift.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.