| extract_params | R Documentation |
Pulls point estimates, SEs, and CIs from a fitted mirt object and returns them in long format matching the item_results schema.
extract_params(
mod,
design,
estimation_model,
iteration,
sample_size,
true_params,
true_params_lookup,
se = TRUE
)
mod |
A fitted mirt object. |
design |
An |
estimation_model |
Character string: "1PL", "2PL", or "GRM" (the model that was fitted, which may differ from design$model). |
iteration |
Integer iteration number. |
sample_size |
Integer sample size. |
true_params |
Data frame (used for schema). |
true_params_lookup |
Named character vector mapping keys of the form
|
se |
Logical. Extract standard errors and CIs? Default |
Uses the list-based coef(mod) output (one matrix per item, keyed by
item name). Default coef() returns rows par, CI_2.5, CI_97.5;
SE is derived from CI width: SE = (upper - lower) / (2 * z_0.975).
Data frame with item_results columns.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.