ismembertol | R Documentation |
Does the
ismembertol(A, B, rows = FALSE, indices = TRUE)
A |
a vector, matrix or dataframe |
B |
another vector, matrix or dataframe |
rows |
if |
indices |
if |
Same as ismember
Waldir Leoncio
ismember
x <- t(1:6) * pi y <- 10 ^ log10(x) # Show that values are equal, but not identical (due to floating-point error) all.equal(x, y) identical(x, y) # Checking the difference in outputs ismember(x, y) ismembertol(x, y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.