| write_mfrm_subset_file | R Documentation |
Write standalone subset-connectivity files
write_mfrm_subset_file(
fit,
diagnostics = NULL,
path,
node_path = NULL,
format = c("csv", "tsv"),
digits = 4,
overwrite = FALSE,
include_nodes = TRUE
)
fit |
Output from |
diagnostics |
Optional output from |
path |
Output file path for the subset summary table. |
node_path |
Optional output file path for the node-level subset table.
When |
format |
File format: |
digits |
Rounding digits for numeric columns. |
overwrite |
If |
include_nodes |
If |
Subsets are connected components in the observation design graph. The graph
links Person and all modeled facet levels that co-occur in an observation.
Multiple subsets mean the scale is not fully connected unless external
anchoring or a deliberate separate-calibration design justifies it.
A bundle with table, nodes, summary, written_files, and
settings.
diagnose_mfrm(), subset_connectivity_report(),
write_mfrm_residual_file()
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score",
method = "JML", maxit = 30)
diag <- diagnose_mfrm(fit, residual_pca = "none")
path <- tempfile(fileext = ".csv")
out <- write_mfrm_subset_file(fit, diag, path, overwrite = TRUE)
out$written_files
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.