Build a reproducibility manifest for an MFRM analysis
Source:R/api-export-bundles.R
build_mfrm_manifest.RdBuild a reproducibility manifest for an MFRM analysis
Usage
build_mfrm_manifest(
fit,
diagnostics = NULL,
bias_results = NULL,
population_prediction = NULL,
unit_prediction = NULL,
plausible_values = NULL,
include_person_anchors = FALSE
)Arguments
- fit
Output from
fit_mfrm()orrun_mfrm_facets().- diagnostics
Optional output from
diagnose_mfrm(). WhenNULL, diagnostics are computed withresidual_pca = "none".- bias_results
Optional output from
estimate_bias()or a named list of bias bundles.- population_prediction
Optional output from
predict_mfrm_population().- unit_prediction
Optional output from
predict_mfrm_units().- plausible_values
Optional output from
sample_mfrm_plausible_values().- include_person_anchors
If
TRUE, include person measures in the exported anchor table.
Details
This helper captures the package-native equivalent of the Streamlit app's configuration export. It summarizes analysis settings, source columns, anchoring information, and which downstream outputs are currently available.
When to use this
Use build_mfrm_manifest() when you want a compact, machine-readable record
of how an analysis was run. Compared with related helpers:
export_mfrm()writes analysis tables only.build_mfrm_manifest()records settings and available outputs.build_mfrm_replay_script()creates an executable R script.export_mfrm_bundle()writes a shareable folder of files.
Output
The returned bundle has class mfrm_manifest and includes:
summary: one-row analysis overviewenvironment: package/R/platform metadatamodel_settings: key-value model settings tablesource_columns: key-value data-column tableestimation_control: key-value optimizer settings tableanchor_summary: facet-level anchor summaryanchors: machine-readable anchor tableavailable_outputs: availability table for diagnostics/bias/PCA/prediction outputssettings: manifest build settings
Interpreting output
The summary table is the quickest place to confirm that you are looking at
the intended analysis. The model_settings, source_columns, and
estimation_control tables are designed for audit trails and method write-up.
The available_outputs table is especially useful before building bundles,
because it tells you whether residual PCA, anchors, bias results, or
prediction-side artifacts are already available. A practical reading order is
summary first, available_outputs second, and anchors last when
reproducibility depends on fixed constraints.
Typical workflow
Fit a model with
fit_mfrm()orrun_mfrm_facets().Compute diagnostics once with
diagnose_mfrm()if you want explicit control over residual PCA.Build a manifest and inspect
summaryplusavailable_outputs.If you need files on disk, pass the same objects to
export_mfrm_bundle().
Examples
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score",
method = "JML", maxit = 25)
diag <- diagnose_mfrm(fit, residual_pca = "none")
manifest <- build_mfrm_manifest(fit, diagnostics = diag)
manifest$summary[, c("Model", "Method", "Observations", "Facets")]
#> Model Method Observations Facets
#> 1 RSM JML 768 2
manifest$available_outputs[, c("Component", "Available")]
#> Component Available
#> 1 observed_residuals TRUE
#> 2 measures TRUE
#> 3 reliability TRUE
#> 4 residual_pca FALSE
#> 5 bias_results FALSE
#> 6 anchors TRUE
#> 7 population_prediction FALSE
#> 8 unit_prediction FALSE
#> 9 plausible_values FALSE