| identical.integer64 | R Documentation |
This will discover any deviation between objects containing integer64 vectors.
identical.integer64(
x,
y,
num.eq = FALSE,
single.NA = FALSE,
attrib.as.set = TRUE,
ignore.bytecode = TRUE,
ignore.environment = FALSE,
ignore.srcref = TRUE,
...
)
x, y |
Atomic vector of class 'integer64' |
num.eq, single.NA, attrib.as.set, ignore.bytecode, ignore.environment, ignore.srcref |
See |
... |
Passed on to |
This is simply a wrapper to identical() with default arguments
num.eq = FALSE, single.NA = FALSE.
A single logical value, TRUE or FALSE, never NA and never
anything other than a single value.
==.integer64 identical() integer64()
i64 <- as.double(NA); class(i64) <- "integer64"
identical(i64-1, i64+1)
identical.integer64(i64-1, i64+1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.