information_plot
information_plot(model)
information_plot(model, items)
Create a plot of the test information for model
If items
is specified, the test information is plotted according to the subtest including only items
. if items
is omitted, the test information is plotted for all items included in model
.
Plot attributes
Generic
color
: The color of the information plot.uncertainty_color
: The color of the displayed uncertainty information. For plots with uncertainty intervals this is the color of the confidence band. For plots with sample based uncertainty information this is the line color of the samples.theta
: The values oftheta
for which to plot the information. default: -3.0:0.01:3.0.scoring_function
: The scoring function applied to the information.
Specific
Models with SamplingEstimate
samples
: The number of samples to plot. default: 1000.uncertainty_type
: Changes how the uncertainty of the estimate is displayed. Ifuncertainty_type = :samples
, then iterations from the MCMC estimation are plotted. Ifunvertainty_type = :interval
, then uncertainty intervals are plotted. default::samples
quantiles
: The lower and upper quantile for uncertainty intervals. default:(0.1, 0.9)
aggregate_fun
: A function that aggregates MCMC samples. The provided function must take a vector as input and output a scalar value. Ifaggregate_fun = nothing
no aggregate is plotted. default: mean
From ItemResponseFunctions.jl
Dichotomous items
using CairoMakie
using ItemResponsePlots
using ItemResponseFunctions
items = [
(a = 1.2, b = 0.2, c = 0.5),
(a = 1.0, b = 1.5, c = 0.0),
(a = 2.6, b = -0.5, c = 0.2)
]
information_plot(ThreePL, items)
Polytomous items
using CairoMakie
using ItemResponsePlots
using ItemResponseFunctions
items = [
(b = 0.0, t = rand(3)),
(b = -0.5, t = rand(3)),
(b = 1.0, t = rand(3))
]
information_plot(RSM, items)