View source: R/api-plotting-extras.R
| plot_rater_severity_profile | R Documentation |
Ranks the levels of a chosen rater facet by estimated severity and
draws each level as a horizontal CI whisker around the point
estimate. Optional gentle / strict guidance bands at +/-0.5 and
+/-1.0 logit relative to the centred mean make rater calibration
easy to read for training feedback.
plot_rater_severity_profile(
fit,
diagnostics = NULL,
facet = "Rater",
ci_level = 0.95,
show_bands = TRUE,
preset = c("standard", "publication", "compact", "monochrome"),
draw = TRUE
)
fit |
An |
diagnostics |
Optional |
facet |
Facet name to plot (default |
ci_level |
Confidence level used for the whiskers (default
|
show_bands |
Logical. When |
preset |
Visual preset. |
draw |
If |
An mfrm_plot_data object whose data slot contains
columns Level, Estimate, SE, CI_Lower, CI_Upper,
Band.
The vertical reference line at zero is the sum-to-zero centring
point. Levels well within +/- 0.5 logit (gentle band) are
typically interchangeable in operational scoring; levels outside
+/- 1.0 logit (strict band) deserve targeted training or
anchoring.
diagnose_mfrm(), analyze_facet_equivalence(),
plot_facet_equivalence().
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score",
method = "JML", maxit = 30)
p <- plot_rater_severity_profile(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.