View source: R/api-plotting-extras.R
| plot_threshold_ladder | R Documentation |
Renders the Rasch-Andrich threshold structure as a vertical ladder per
step-facet level. Each tick is a tau_k; lines connecting adjacent
thresholds are coloured to make disordered crossings (tau_{k+1} < tau_k) visually obvious. For RSM there is one ladder; for PCM (and
bounded GPCM) there is one ladder per step_facet level.
plot_threshold_ladder(
fit,
highlight_disorder = TRUE,
preset = c("standard", "publication", "compact", "monochrome"),
draw = TRUE
)
fit |
An |
highlight_disorder |
Logical. When |
preset |
Visual preset ( |
draw |
If |
An mfrm_plot_data object with a data slot containing
columns Group, Step, Threshold, Disordered for each ladder
row.
Within each ladder, thresholds should ascend monotonically. A disordered crossing (highlighted in the fail colour) suggests that the corresponding category is rarely the most likely response over any logit interval, and is a common trigger for category-collapsing decisions.
category_structure_report(), category_curves_report(),
plot.mfrm_fit() (type = "ccc").
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score",
method = "JML", maxit = 30)
p <- plot_threshold_ladder(fit, draw = FALSE)
head(p$data$data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.