powered by
Perform Automated Test Assembly with specified configurations.
ATA(config, constraints, plot = FALSE, plot_range = c(-3, 3))# S4 method for config_ATA ATA(config, constraints, plot = FALSE, plot_range = c(-3, 3))
# S4 method for config_ATA ATA(config, constraints, plot = FALSE, plot_range = c(-3, 3))
An '>config_ATA object containing configuration options. Use createStaticTestConfig for this.
'>config_ATA
createStaticTestConfig
A list representing optimization constraints. Use loadConstraints for this.
loadConstraints
Logical. If TRUE, draw Fisher information plot from the selected items.
TRUE
Numeric. A vector of length 2 containing the lower and upper bounds of plot range. The default is c(-3, 3).
c(-3, 3)
A list containing the following entries:
MIP A list containing the result from MIP solver.
MIP
solution Solution vector. Each value represents an item. A value of 1 indicates the item was selected.
solution
objval Objective value of the solution.
objval
status Status value indicating whether an optimal solution was found.
status
selected The attributes of the selected items.
selected
solver The name of the MIP solver used in the assembly.
solver
obj_value Objective value of the solution. Identical to the one above.
obj_value
solve_time The elapsed time in running the solver.
solve_time
van_der_linden_linear_2005TestDesign
# NOT RUN { config_science <- createStaticTestConfig( list( method = "MAXINFO", target_location = c(-1, 1) ) ) solution <- ATA(config_science, constraints_science, plot = TRUE) # }
Run the code above in your browser using DataLab