View source: R/reliabilityIRT.R
reliabilityIRT | R Documentation |
Estimate the reliability in item response theory.
reliabilityIRT(information, varTheta = 1)
information |
Test information. |
varTheta |
Variance of theta. |
Estimate the reliability in item response theory using the test information (i.e., the sum of all items' information).
Reliability for that amount of test information.
https://groups.google.com/g/mirt-package/c/ZAgpt6nq5V8/m/R3OEeEqdAQAJ
Other IRT:
deriv_d_negBinom()
,
discriminationToFactorLoading()
,
fourPL()
,
itemInformation()
,
standardErrorIRT()
,
test_info_4PL()
# Calculate information for 4 items
item1 <- itemInformation(b = -2, a = 0.6, theta = -4:4)
item2 <- itemInformation(b = -1, a = 1.2, theta = -4:4)
item3 <- itemInformation(b = 1, a = 1.5, theta = -4:4)
item4 <- itemInformation(b = 2, a = 2, theta = -4:4)
items <- data.frame(item1, item2, item3, item4)
# Calculate test information
items$testInformation <- rowSums(items)
# Estimate reliability
reliabilityIRT(items$testInformation)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.