Plot an anchor-audit object
Arguments
- x
Output from
audit_mfrm_anchors().- y
Reserved for generic compatibility.
- type
Plot type:
"issue_counts","facet_constraints", or"level_observations".- main
Optional title override.
- palette
Optional named colors.
- label_angle
X-axis label angle for bar plots.
- draw
If
TRUE, draw using base graphics.- ...
Reserved for generic compatibility.
Interpreting output
"issue_counts": volume of each issue class."facet_constraints": anchored/grouped/free mix by facet."level_observations": observation support across levels.
Typical workflow
Run
audit_mfrm_anchors().Start with
plot(aud, type = "issue_counts").Inspect constraint and support plots before fitting.
Examples
toy <- load_mfrmr_data("example_core")
aud <- audit_mfrm_anchors(toy, "Person", c("Rater", "Criterion"), "Score")
p <- plot(aud, draw = FALSE)