| mfrm_misfit_thresholds | R Documentation |
Returns the lower / upper bounds that mfrmr screens treat as the acceptable mean-square (Infit / Outfit MnSq) band when flagging element-level misfit. Defaults follow Linacre's published 0.5-1.5 acceptance band; both ends can be overridden via R options.
mfrm_misfit_thresholds(lower = NULL, upper = NULL)
lower |
Optional lower bound. When |
upper |
Optional upper bound. |
Helpers that consume the band include
summary.mfrm_diagnostics() (misfit_flagged block and
key_warnings auto-flag), build_misfit_casebook() (the new
element_fit source family), the bias / misfit narrative inside
build_apa_outputs(), and facet_quality_dashboard() when
misfit_warn = NULL. Setting the options once at the top of an
analysis script therefore changes every downstream screen at once.
A named numeric vector c(lower = ..., upper = ...) with
lower < upper.
Two scalar R options drive the band:
mfrmr.misfit_lowerLower acceptance bound. Default 0.5.
mfrmr.misfit_upperUpper acceptance bound. Default 1.5.
Pass scalar arguments to override the options for a single call,
e.g. mfrm_misfit_thresholds(lower = 0.7, upper = 1.3) for the
tighter Bond & Fox (2015) reporting band.
summary.mfrm_diagnostics(), build_misfit_casebook(),
facet_quality_dashboard()
mfrm_misfit_thresholds()
old <- options(mfrmr.misfit_lower = 0.7, mfrmr.misfit_upper = 1.3)
mfrm_misfit_thresholds()
options(old)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.