information {fcirt} | R Documentation |
mfc item and test information
Description
This function calculates mfc item and test information.
Usage
information(x, approach, theta, information, items)
Arguments
x |
returned object |
approach |
Estimation approaches used for parameters. They can be "direct", which is direct approach, and "two step", which is two step approach. The default is direct approach. |
theta |
Type of theta values used. They can be "quadrature", which is -3, -2.9, -2.8, -2.7...2.9, 3, and "estimated", which is estimated theta values. The default is quadrature. |
information |
Types of information.They can be "item", which is overall item information, and "test", which is overall test information. The default is overall item information. |
items |
The items of which information to be calculated. The default is all the items. |
Value
Selected item information or overall test information
Examples
Data <- c(1)
Data <- matrix(Data,nrow = 1)
pairmap <- c(1,2)
pairmap <- matrix(pairmap,nrow = 1)
ind <- c(1,2)
ParInits <- c(1, 1, 1, -1, -1, -1)
ParInits <- matrix(ParInits, ncol = 3)
mod <- fcirt(fcirt.Data=Data,pairmap=pairmap,ind=ind,ParInits=ParInits,iter=3,warmup=1,chains=1)
information(mod, approach="direct", theta="quadrature", information="item", items=1)
[Package fcirt version 0.1.0 Index]