Description Usage Arguments Details Value Author(s) See Also Examples
Testing whether multiple objects are identical
1 2 3 4 5 6 7 8 9 |
... |
Objects to be tested, or a list of them |
num.eq, single.NA, attrib.as.set, ignore.bytecode, |
See
|
ignore.environment, ignore.srcref |
See |
midentical
extends identical
to test multiple objects instead
of only two.
A logical value, TRUE
if all objects are identical
Jitao David Zhang <jitao_david.zhang@roche.com>
1 2 3 4 5 6 7 8 9 10 11 12 | set1 <- "HSV"
set2 <- set3 <- set4 <- c("HSV", "FCB")
midentical(set1, set2)
midentical(list(set1, set2))
midentical(set2, set3, set4)
midentical(list(set2, set3, set4))
## other options passed to identical
midentical(0, -0, +0, num.eq=FALSE)
midentical(0, -0, +0, num.eq=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.