View source: R/checkListEqual.R
checkListEqual | R Documentation |
Checks that all elements in a list are identical
checkListEqual(x)
x |
A list |
TRUE if all elements in a list are identical, FALSE otherwise. If the function finds an element that is different it will print the elements that differ
checkListEqual(x = list(a = 1:5, b = 3:6))
checkListEqual(x = list(a = letters[7:9], b = c("g", "h", "i")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.