print_irt_stan | R Documentation |
irt_stan
This function prints a table summarizing the parameters for a fitted
edstan
model.
print_irt_stan(fit, data_list = NULL, ...)
fit |
A |
data_list |
An optional Stan data list created with
|
... |
Additional options passed to |
# Make a suitable data list:
spelling_list <- irt_data(response_matrix = spelling[, 2:5],
covariates = spelling[, "male", drop = FALSE],
formula = ~ 1 + male)
## Not run:
# Fit a latent regression 2PL
twopl_fit <- irt_stan(spelling_list, model = "2pl_latent_reg.stan",
iter = 300, chains = 4)
# Get a table summarizing parameter posteriors
print_irt_stan(twopl_fit, spelling_list)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.