maximinObjective {eatATA} | R Documentation |
Maximin Constraint.
Description
Create maximin
-constraints related to an item parameter/value. That is, the created
constraints can be used to maximize the minimal sum of the
item values (itemValues
), while at the same time setting an upper limit to the
overflow by means of a maximally allowed deviation allowedDeviation
.
Usage
maximinObjective(
nForms,
itemValues,
allowedDeviation,
weight = 1,
whichForms = seq_len(nForms),
info_text = NULL,
itemIDs = names(itemValues)
)
Arguments
nForms |
Number of forms to be created. |
itemValues |
Item parameter/values for which the sum per test form should be constrained. |
allowedDeviation |
the maximum allowed deviation between the sum of the target values. |
weight |
a weight for the real-valued variable(s). Useful when multiple constraints are combined. Should only be used if the implications are well understood. |
whichForms |
An integer vector indicating which test forms should be constrained. Defaults to all the test forms. |
info_text |
a character string of length 1, to be used in the |
itemIDs |
a character vector of item IDs in correct ordering, or NULL. |
Value
An object of class "constraint"
.
Examples
# constraint that minimizes the maximum difference per test form value and a
# target value of 0
maximinObjective(nForms = 2, itemValues = rep(-2:2, 2),
allowedDeviation = 1)