| subset_connectivity_report | R Documentation |
Build a subset connectivity report (preferred alias)
subset_connectivity_report(
fit,
diagnostics = NULL,
top_n_subsets = NULL,
min_observations = 0
)
fit |
Output from |
diagnostics |
Optional output from |
top_n_subsets |
Optional maximum number of subset rows to keep. |
min_observations |
Minimum observations required to keep a subset row. |
summary(out) is supported through summary().
plot(out) is dispatched through plot() for class
mfrm_subset_connectivity (type = "subset_observations",
"facet_levels", or "linking_matrix" / "coverage_matrix" /
"design_matrix").
A named list with subset-connectivity components. Class:
mfrm_subset_connectivity.
summary: number and size of connected subsets.
subset table: whether data are fragmented into disconnected components.
facet-level columns: where connectivity bottlenecks occur.
Run subset_connectivity_report(fit).
Confirm near-single-subset structure when possible.
Use results to justify linking/anchoring strategy.
diagnose_mfrm(), measurable_summary_table(), data_quality_report(),
mfrmr_linking_and_dff, mfrmr_visual_diagnostics
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score", method = "JML", maxit = 25)
out <- subset_connectivity_report(fit)
summary(out)
p_sub <- plot(out, draw = FALSE)
p_design <- plot(out, type = "design_matrix", draw = FALSE)
class(p_sub)
class(p_design)
out$summary[, c("Subset", "Observations", "ObservationPercent")]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.