powered by
Computes the amount of test or item information for a fitted IRT model, in a specified range.
information(object, range, items = NULL, ...)
an object inheriting from either class gpcm, class grm, class ltm, class rasch or class tpm.
gpcm
grm
ltm
rasch
tpm
a numeric interval for which the test information should be computed.
the items for which the information should be computed; the default NULL corresponds to all the items, which is equivalent to the test information.
NULL
extra arguments passed to integrate().
integrate()
A list of class information with components,
information
the amount of information in the specified interval.
the total amount of information; typically this is computed as the amount of information in the interval \((-10, 10)\).
the proportion of information in the specified range, i.e., "Info in range" / "Total Info".
"Info in range" / "Total Info"
the value of range argument.
range
the value of items argument.
items
the matched call for object.
object
The amount of information is computed as the area under the Item or Test Information Curve in the specified interval, using integrate().
plot.gpcm, plot.grm, plot.ltm, plot.rasch
plot.gpcm
plot.grm
plot.ltm
plot.rasch
# NOT RUN { fit <- rasch(LSAT) information(fit, c(-2, 0)) information(fit, c(0, 2), items = c(3, 5)) # }
Run the code above in your browser using DataLab