View source: R/all_identical.R
all_identical | R Documentation |
Returns TRUE if all, or any, arguments are equal to each other using the test base::identical
all_identical(...)
any_identical(...)
... |
Two or more values to compare |
Logical
all_identical(1, 1, 1)
all_identical(1, 1, "1")
all_identical(1, 1, 2)
all_identical(1, 1, NA)
any_identical(1, 1, 2)
any_identical(1, "1", 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.