makeSimulationDataCache
is a function for creating a simulation_data_cache
object.
This is used in Shadow
to make all necessary data (e.g., item information, response data) prior to the main simulation.
makeSimulationDataCache(
item_pool,
info_type = "FISHER",
theta_grid = seq(-4, 4, 0.1),
seed = NULL,
true_theta = NULL,
response_data = NULL
)# S4 method for item_pool
makeSimulationDataCache(
item_pool,
info_type = "FISHER",
theta_grid = seq(-4, 4, 0.1),
seed = NULL,
true_theta = NULL,
response_data = NULL
)
an item_pool
object.
the type of information.
a grid of theta values.
(optional) seed to use for generating response data if needed.
(optional) true theta values of all simulees.
(optional) response data on all items for all simulees.