loadConstraints {TestDesign} | R Documentation |
Load constraints
Description
loadConstraints
is a data loading function for creating a constraints
object.
loadConstraints
can read constraints from a data.frame or a .csv file.
The contents must be in the expected format; see the vignette in vignette("constraints")
for a documentation.
Usage
loadConstraints(object, pool, item_attrib, st_attrib = NULL)
Arguments
object |
constraint specifications. Can be a |
pool |
an |
item_attrib |
an |
st_attrib |
(optional) an |
Value
loadConstraints
returns a constraints
object. This object is used in Static
and Shadow
.
See Also
dataset_science
, dataset_reading
, dataset_fatigue
, dataset_bayes
for examples.
Examples
## Read from data.frame:
itempool_science <- loadItemPool(itempool_science_data)
itemattrib_science <- loadItemAttrib(itemattrib_science_data, itempool_science)
constraints_science <- loadConstraints(constraints_science_data,
itempool_science, itemattrib_science)
## Read from file: write to tempdir() for illustration and clean afterwards
f <- file.path(tempdir(), "constraints_science.csv")
write.csv(constraints_science_data, f, row.names = FALSE)
constraints_science <- loadConstraints(f,
itempool_science, itemattrib_science)
file.remove(f)
[Package TestDesign version 1.6.1 Index]