pop_iita can be used to perform one of the three inductive
item tree analysis algorithms (original, corrected, and minimized
corrected) in population quantities (in a known population)
selectively.
pop_iita(imp, ce, lg, items, dataset = NULL, A = NULL, v)imp.dataset = NULL corresponds to no dataset being used.v = 1
(minimized corrected), v = 2 (corrected), and v = 3
(original).imp, ce, lg, items,
dataset, A, and v are of required types,
pop_iita returns a named list consisting of the following five
components:v = 1 (minimized corrected),
v = 2 (corrected), and v = 3 (original).iita. The algorithms are described in the paper about
the DAKS package by Uenlue and Sargin (2010), and in
the paper by Sargin and Uenlue (2009). Compared to iita, the function pop_iita
implements the three inductive item tree analysis algorithms in
population, not sample, quantities. The argument imp
must give a quasi order, and equipped with the error probabilities
ce and lg, it is considered a special case of the
basic local independence model (Doignon and Falmagne, 1999).
The latter then is considered as the underlying population model.
If dataset = NULL a set of competing quasi orders is
constructed based on a population analog of the inductive generation
procedure implemented in sample quantities in ind_gen.
If a dataset is specified explicitly, that data are used to generate
the set of competing quasi orders based on the sample version of the
inductive generation procedure.
A set of implications, an object of the class
set, consists of $2$-tuples $(i, j)$ of
the class tuple, where a $2$-tuple
$(i, j)$ is interpreted as `mastering item $j$ implies
mastering item $i$.'
The data (in dataset) must contain only ones and zeros, which
encode solving or failing to solve an item, respectively.
Sargin, A. and Uenlue, A. (2009) Inductive item tree analysis: Corrections, improvements, and comparisons. Mathematical Social Sciences, 58, 376--392.
Uenlue, A. and Sargin, A. (2010) DAKS: An R package for data analysis methods in knowledge space theory. Journal of Statistical Software, 37(2), 1--31. URL http://www.jstatsoft.org/v37/i02/.
pop_variance for population asymptotic variances of
diff coefficients; variance for estimated
asymptotic variances of diff coefficients; simu
for data simulation tool; ind_gen for (sample)
inductive generation procedure; iita, the interface
that provides the three (sample) inductive item tree analysis
methods under one umbrella. See also DAKS-package for
general information about this package.
x <- simu(3, 10000, ce = 0.05, lg = 0.05, delta = 0.12)
y <- iita(x$dataset, v = 2)
z <- pop_iita(x$implications, 0.05, 0.05, 3, x$dataset, v = 2)
## similar sample and population diff values are obtained
(y$diff) / (10000^2)
z
Run the code above in your browser using DataLab