Nothing
# Break down the item metadata from a data frame format into a list format
# This function was developed by referencing the output format of the
# "as.irt.pars()" function in the plink R package (Weeks, 2010).
breakdown <- function(x) {
# extract the id information
id <- x$id
# extract the score category information
cats <- x$cats
# extract the unique model names
model <- x$model
uni.mod <- sort(unique(model))
# extract the item parameter matrix
pars <- data.matrix(x[, 4:ncol(x)])
# classify the items into each of the models
item <- purrr::map(.x = uni.mod, ~ {
which(model == .x)
})
names(item) <- uni.mod
# total number of items
nitem <- nrow(x)
# create a list by combining all extracted information
list(
id = id, cats = cats, pars = pars, model = model,
item = item, nitem = nitem
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.