| build_mfrm_network_review | R Documentation |
Build an MFRM network review
build_mfrm_network_review(
fit,
diagnostics = NULL,
sparse_design = NULL,
peer_review_design = NULL,
top_n_subsets = NULL,
min_observations = 0,
top_n = 10,
include_graph = FALSE
)
fit |
Output from |
diagnostics |
Optional output from |
sparse_design |
Optional sparse-design metadata. Supply either the
generated data frame that carries the |
peer_review_design |
Optional peer-review design metadata. Supply
either the generated data frame that carries the |
top_n_subsets |
Optional maximum number of connected-subset rows to
retain before constructing the graph; passed to |
min_observations |
Minimum observations required to keep a subset row;
passed to |
top_n |
Number of central/cut/bridge rows to retain in the review. |
include_graph |
Logical; if |
build_mfrm_network_review() is a synthesis layer over
mfrm_network_analysis(). It keeps the measurement model and graph view in
separate lanes: MFRM estimates remain the measurement results, while the
network review summarizes co-observation connectedness and linking
vulnerability in the observed design. This is especially useful for sparse
or incomplete rater-mediated designs, where common-person links, connected
subsets, articulation points, and bridge edges can explain why an otherwise
estimable model depends on fragile design links.
The review status is deliberately conservative and descriptive. It is not a literature-derived adequacy cut point for fit, separation, recovery, or rater quality. Use it to decide which design links, anchors, or additional observations need inspection before making common-scale claims.
A bundle of class mfrm_network_review containing:
overview: connectedness and front-door review status
network_summary: graph-level metrics from mfrm_network_analysis()
facet_summary: facet-level vulnerability summaries
top_central_nodes, top_cut_nodes, top_bridge_edges: follow-up rows
sparse_review: optional sparse-design linking review
peer_review: optional peer-review assignment and linkage diagnostics
reporting_map: boundary between MFRM, design network, sparse design,
peer-review design, and rater-effect network routes
Wind, S. A., & Jones, E. (2018). The stabilizing influences of linking set size and model-data fit in sparse rater-mediated assessment networks. Educational and Psychological Measurement. doi:10.1177/0013164417703733.
Wind, S. A., Jones, E., & Grajeda, S. (2023). Does sparseness matter? Examining the use of generalizability theory and many-facet Rasch measurement in sparse rating designs. Applied Psychological Measurement, 47(5-6), 351-364. doi:10.1177/01466216231182148.
DeMars, C. E., Shapovalov, Y. A., & Hathcoat, J. D. (2023). Many-Facet Rasch Designs: How Should Raters be Assigned to Examinees? NCME presentation.
mfrm_network_analysis(), subset_connectivity_report(),
build_summary_table_bundle(), rater_network_analysis(),
rater_halo_network_analysis()
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score",
method = "JML", maxit = 30)
if (requireNamespace("igraph", quietly = TRUE)) {
review <- build_mfrm_network_review(fit)
summary(review)
build_summary_table_bundle(review)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.