irt_data | R Documentation |
This function prepares item response data, creating a data list that may be
passed to irt_stan
.
irt_data(
response_matrix = matrix(),
y = integer(),
ii = integer(),
jj = integer(),
covariates = data.frame(),
formula = NULL,
integerize = TRUE,
validate_regression = TRUE
)
response_matrix |
An item response matrix.
Columns represent items and rows represent persons.
NA may be supplied for missing responses.
The lowest score for each item should be 0, with exception to rating scale
models.
|
y |
A vector of scored responses for long-form data.
The lowest score for each item should be 0, with exception to rating scale
models.
NAs are not permitted, but missing responses may simply be omitted
instead.
Required if |
ii |
A vector indexing the items in |
jj |
A vector indexing the persons in |
covariates |
An optional data frame containing (only) person-covariates.
It must contain one row per person or be of the same length as |
formula |
An optional formula for the latent regression that is applied
to |
integerize |
Whether to apply |
validate_regression |
Whether to check the latent regression
equation and covariates for compatibility with the prior distributions
for the coefficients. Defaults to |
A data list suitable for irt_stan
.
See labelled_integer
for a means of creating
appropriate inputs for ii
and jj
.
See irt_stan
to fit a model to the data list.
# For a response matrix ("wide-form" data) with person covariates:
spelling_list <- irt_data(response_matrix = spelling[, 2:5],
covariates = spelling[, "male", drop = FALSE],
formula = ~ rescale_binary(male))
# For long-form data (one row per item-person pair):
agg_list_1 <- irt_data(y = aggression$poly,
ii = aggression$item,
jj = aggression$person)
# Add a latent regression and use labelled_integer() with the items
agg_list_2 <- irt_data(y = aggression$poly,
ii = labelled_integer(aggression$description),
jj = aggression$person,
covariates = aggression[, c("male", "anger")],
formula = ~ 1 + rescale_continuous(male)*rescale_continuous(anger))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.