Summarize a DIF/bias screening simulation
Source:R/api-simulation.R
summary.mfrm_signal_detection.RdSummarize a DIF/bias screening simulation
Usage
# S3 method for class 'mfrm_signal_detection'
summary(object, digits = 3, ...)Arguments
- object
Output from
evaluate_mfrm_signal_detection().- digits
Number of digits used in numeric summaries.
- ...
Reserved for generic compatibility.
Value
An object of class summary.mfrm_signal_detection with:
overview: run-level overviewdetection_summary: aggregated detection rates by design, with design-variable alias columns when applicableademp: simulation-study metadata carried forward from the original objectfacet_names: public facet labels carried from the simulation specificationdesign_variable_aliases: accepted public aliases for design variablesdesign_descriptor: role-based design-variable metadataplanning_scope: explicit record of the current planning contractplanning_constraints: explicit record of mutable/locked design variablesplanning_schema: combined planner-schema contractfuture_branch_active_summary: compact deterministic summary of the schema-only future arbitrary-facet planning branch embedded in the current planning schemagpcm_boundary: bounded-GPCMcaveat row when presentnotes: short interpretation notes, including the bias-side screening caveat
Examples
if (FALSE) { # \dontrun{
sig_eval <- suppressWarnings(evaluate_mfrm_signal_detection(
n_person = 8,
n_rater = 2,
n_criterion = 2,
raters_per_person = 1,
reps = 1,
maxit = 30,
bias_max_iter = 1,
seed = 123
))
summary(sig_eval)
} # }