View source: R/api-estimation.R
| plot.mfrm_anchor_audit | R Documentation |
Plot an anchor-audit object
## S3 method for class 'mfrm_anchor_audit'
plot(
x,
y = NULL,
type = c("issue_counts", "facet_constraints", "level_observations"),
main = NULL,
palette = NULL,
label_angle = 45,
draw = TRUE,
...
)
x |
Output from |
y |
Reserved for generic compatibility. |
type |
Plot type: |
main |
Optional title override. |
palette |
Optional named colors. |
label_angle |
X-axis label angle for bar plots. |
draw |
If |
... |
Reserved for generic compatibility. |
Base-R visualization helper for anchor audit outputs.
A plotting-data object of class mfrm_plot_data.
"issue_counts": volume of each issue class.
"facet_constraints": anchored/grouped/free mix by facet.
"level_observations": observation support across levels.
Run audit_mfrm_anchors().
Start with plot(aud, type = "issue_counts").
Inspect constraint and support plots before fitting.
audit_mfrm_anchors(), make_anchor_table()
toy <- load_mfrmr_data("example_core")
aud <- audit_mfrm_anchors(toy, "Person", c("Rater", "Criterion"), "Score")
p <- plot(aud, draw = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.