Plot facet variability diagnostics using base R
Arguments
- x
Output from
fit_mfrm()orfacets_chisq_table().- diagnostics
Optional output from
diagnose_mfrm()whenxismfrm_fit.- fixed_p_max
Warning cutoff for fixed-effect chi-square p-values.
- random_p_max
Warning cutoff for random-effect chi-square p-values.
- plot_type
"fixed","random", or"variance".- main
Optional custom plot title.
- palette
Optional named color overrides (
fixed_ok,fixed_flag,random_ok,random_flag,variance).- label_angle
X-axis label angle for bar-style plots.
- preset
Visual preset (
"standard","publication", or"compact").- draw
If
TRUE, draw with base graphics.
Details
Facet chi-square tests assess whether the elements within each facet differ significantly.
Fixed-effect chi-square tests the null hypothesis
\(H_0: \delta_1 = \delta_2 = \cdots = \delta_J\) (all element
measures are equal). A flagged result (\(p <\) fixed_p_max)
suggests detectable between-element spread under the fitted model, but
it should be interpreted alongside design quality, sample size, and other
diagnostics.
Random-effect chi-square tests whether element heterogeneity exceeds what would be expected from measurement error alone, treating element measures as random draws. A flagged result is screening evidence that the facet may not be exchangeable under the current model.
Random variance is the estimated between-element variance component after removing measurement error. It quantifies the magnitude of true heterogeneity on the logit scale.
Plot types
"fixed"(default)Bar chart of fixed-effect chi-square by facet. Bars colored red when the null hypothesis is rejected at
fixed_p_max. A flagged (red) bar means the facet shows spread worth reviewing under the fitted model."random"Bar chart of random-effect chi-square by facet. Bars colored red when rejected at
random_p_max."variance"Bar chart of estimated random variance (logit\(^2\)) by facet. Reference line at 0. Larger values indicate greater true heterogeneity among elements.
Interpreting output
Colored flags reflect configured p-value thresholds (fixed_p_max,
random_p_max). For the fixed test, a flagged (red) result suggests
facet spread worth reviewing under the current model. For the random test, a
flagged result is screening evidence that the facet may contribute
non-trivial heterogeneity beyond measurement error.
Typical workflow
Review
"fixed"and"random"panels for flagged facets.Check
"variance"to contextualize heterogeneity.Cross-check with inter-rater and element-level fit diagnostics.
Examples
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score", method = "JML", maxit = 25)
p <- plot_facets_chisq(fit, draw = FALSE)
if (interactive()) {
plot_facets_chisq(
fit,
draw = TRUE,
plot_type = "fixed",
preset = "publication",
main = "Facet Chi-square (Customized)",
palette = c(fixed_ok = "#2b8cbe", fixed_flag = "#cb181d"),
label_angle = 45
)
}