grm_iif | R Documentation |
Calculates the value of the Item Information Function for the Graded Response Model.
grm_iif(theta, a, b)
theta |
Latent trait value of the subject |
a |
Discrimination parameter of IRF |
b |
Vector of difficulty parameters (thresholds) of IRF |
Value of the Item Information Function
## Not run:
# Example for an item with 3 categories
a <- 1.5
b <- c(-1.0, 1.0)
thetas <- seq(-3, 3, by = 0.1)
info <- sapply(thetas, function(t) grm_iif(t, a, b))
plot(thetas, info, type = "l", xlab = "Theta", ylab = "Information")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.