runRSSS {PROsetta} | R Documentation |
Compute Crosswalk Tables
Description
runRSSS
is a function for generating raw-score to standard-score crosswalk tables from supplied calibrated item parameters.
Usage
runRSSS(
data,
ipar_linked,
prior_mean = 0,
prior_sd = 1,
min_theta = -4,
max_theta = 4,
inc = 0.05,
min_score = 1
)
Arguments
data |
a |
ipar_linked |
an object returned from |
prior_mean |
prior mean. (default = |
prior_sd |
prior standard deviation. (default = |
min_theta |
the lower limit of theta quadratures for numerical integration. (default = |
max_theta |
the upper limit of theta quadratures for numerical integration. (default = |
inc |
the increment between theta quadratures for numerical integration. (default = |
min_score |
minimum item score (0 or 1) for each scale (1, 2, and combined). If a single value is supplied, the value is applied to all scales. (default = |
Value
runRSSS
returns a list
containing crosswalk tables.
Examples
out_link <- runLinking(data_asq, method = "FIXEDPAR")
score_table <- runRSSS(data_asq, out_link)
[Package PROsetta version 0.4.1 Index]