| plot.mfrm_summary_table_bundle | R Documentation |
Plot a summary-table bundle for manuscript QC
## S3 method for class 'mfrm_summary_table_bundle'
plot(
x,
y = NULL,
type = c("table_rows", "role_tables", "appendix_roles", "appendix_sections",
"appendix_presets", "selection_handoff_presets", "selection_tables",
"selection_handoff", "selection_handoff_bundles", "selection_handoff_roles",
"selection_handoff_role_sections", "selection_bundles", "selection_roles",
"selection_sections", "numeric_profile", "first_numeric"),
which = NULL,
selection_value = c("count", "fraction"),
appendix_preset = c("recommended", "compact", "all", "methods", "results",
"diagnostics", "reporting"),
main = NULL,
palette = NULL,
label_angle = 45,
draw = TRUE,
...
)
x |
Output from |
y |
Reserved for generic compatibility. |
type |
Plot type: |
which |
Optional table selector used for numeric plot types. |
selection_value |
For |
appendix_preset |
Appendix preset used for |
main |
Optional title override. |
palette |
Optional named color overrides. |
label_angle |
Axis-label rotation angle for bar-type plots. |
draw |
If |
... |
Reserved for generic compatibility. |
This helper keeps summary-bundle plotting conservative. It either visualizes
the bundle's own bundle-level indexes ("table_rows", "role_tables",
"appendix_roles", "appendix_sections", "appendix_presets") or routes a
selected table through apa_table() and plot.apa_table() for numeric QC.
A plotting-data object of class mfrm_plot_data.
"table_rows": compares returned table sizes to show where reporting mass sits.
"role_tables": shows how many returned tables belong to each reporting role.
"appendix_roles": shows how returned tables contribute to conservative
appendix routing by reporting role.
"appendix_sections": shows how returned tables are distributed across
methods/results/diagnostics/reporting sections.
"appendix_presets": shows how many tables the current bundle contributes
to the conservative appendix presets.
"selection_handoff_presets": shows plot-ready appendix handoff counts by
preset for workflow-only appendix routing surfaces in the bundle.
"selection_tables" / "selection_handoff" /
"selection_handoff_bundles" /
"selection_handoff_roles" / "selection_handoff_role_sections" /
"selection_bundles" /
"selection_roles" / "selection_sections": show workflow-only appendix
selection surfaces already materialized inside the bundle.
"numeric_profile" / "first_numeric": reuse the same numeric QC logic as
plot.apa_table() but start from a summary-table bundle.
build_summary_table_bundle(), apa_table(), plot.apa_table()
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score",
method = "JML", maxit = 30)
bundle <- build_summary_table_bundle(fit)
plot(bundle, draw = FALSE)
plot(bundle, type = "numeric_profile", which = "facet_overview", draw = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.