powered by
Extensions for the use of base::identical()
base::identical()
are_identical(..., params = NULL)
A logical vector of TRUE/FALSE of equal length of each ...
logical
TRUE
FALSE
...
vector
Vectors of values to compare, element-wise of equal length
Additional params (as a named list of arguments for base::identical)
x <- y <- z <- 1:5 y[2] <- 3L z[5] <- NA_integer_ identical(x, y) # compare entire vector are_identical(x, y) # element-wise are_identical(x, y, z) # 3 or more vectors
Run the code above in your browser using DataLab