omxCheckSetEquals {OpenMx} | R Documentation |
Set Equality Testing Function
Description
This function tests whether two vectors contain the same elements.
Usage
omxCheckSetEquals(...)
Arguments
... |
arguments forwarded to expect_setequal |
Details
Performs the ‘setequal’ function on the two arguments. If the two arguments do not contain the same elements, then an error will be thrown.
References
The OpenMx User's guide can be found at https://openmx.ssri.psu.edu/documentation/.
See Also
omxCheckCloseEnough
, omxCheckWithinPercentError
, omxCheckIdentical
, omxCheckTrue
, omxCheckEquals
Examples
omxCheckSetEquals(c(1, 1, 2, 2, 3), c(3, 2, 1))
omxCheckSetEquals(matrix(1, 1, 1), matrix(1, 3, 3))
# Throws an error
try(omxCheckSetEquals(c(1, 2, 3, 4), c(2, 1, 3)))
[Package OpenMx version 2.21.11 Index]