View source: R/loading_functions.R
| loadConstraints | R Documentation |
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.
loadConstraints(object, pool, item_attrib, st_attrib = NULL)
object |
constraint specifications. Can be a |
pool |
an |
item_attrib |
an |
st_attrib |
(optional) an |
loadConstraints returns a constraints object. This object is used in Static and Shadow.
dataset_science, dataset_reading, dataset_fatigue, dataset_bayes for 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.