View source: R/core_functions.R
getRSSS | R Documentation |
getRSSS
is a function for generating a raw-score to standard-score crosswalk table.
getRSSS(ipar, model_id, theta_grid, is_minscore_0, prior_mu_sigma)
ipar |
an item parameter matrix for graded response items. Accepts both a/b and a/d format parameters. Accepts multidimensional item parameters. |
model_id |
the column name for item models. |
theta_grid |
the theta grid to use for numerical integration. |
is_minscore_0 |
if |
prior_mu_sigma |
a named list containing prior distribution parameters. All values must be in the theta metric.
|
## Free calibration without using anchor
o <- runCalibration(data_asq, technical = list(NCYCLES = 1000))
ipar <- mirt::coef(o, IRTpars = TRUE, simplify = TRUE)$items
ipar <- as.data.frame(ipar)
ipar[, data_asq@model_id] <- data_asq@itemmap[, data_asq@model_id]
items <- getItemNames(data_asq, 2)
getRSSS(
ipar = ipar[items, ],
model_id = data_asq@model_id,
theta_grid = seq(-4, 4, .1),
is_minscore_0 = TRUE,
prior_mu_sigma = list(mu = 0, sigma = 1)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.