config_Static-class | R Documentation |
createStaticTestConfig
is a config function for creating a config_Static
object for Static (fixed-form) test assembly.
Default values are used for any unspecified parameters/slots.
createStaticTestConfig(item_selection = NULL, MIP = NULL)
item_selection |
a named list containing item selection criteria.
|
MIP |
a named list containing solver options.
|
createStaticTestConfig
returns a config_Static
object. This object is used in Static
.
cfg1 <- createStaticTestConfig(
list(
method = "MAXINFO",
info_type = "FISHER",
target_location = c(-1, 0, 1),
target_weight = c(1, 1, 1)
)
)
cfg2 <- createStaticTestConfig(
list(
method = "TIF",
info_type = "FISHER",
target_location = c(-1, 0, 1),
target_weight = c(1, 1, 1),
target_value = c(8, 10, 12)
)
)
cfg3 <- createStaticTestConfig(
list(
method = "TCC",
info_type = "FISHER",
target_location = c(-1, 0, 1),
target_weight = c(1, 1, 1),
target_value = c(10, 15, 20)
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.