uniques | R Documentation |
Check that ...
is empty and if so call
base::unique(x, incomparables = incomparables, MARGIN = MARGIN, fromLast = fromLast)
(else throw an error)
uniques(x, ..., incomparables = FALSE, MARGIN = 1, fromLast = FALSE)
x |
items to be compared. |
... |
not used, checked to be empty to prevent errors. |
incomparables |
passed to base::unique. |
MARGIN |
passed to base::unique. |
fromLast |
passed to base::unique. |
base::unique(x, incomparables = incomparables, MARGIN = MARGIN, fromLast = fromLast)
x = c("a", "b")
y = c("b", "c")
# task: get unique items in x plus y
unique(c(x, y)) # correct answer
unique(x, y) # oops forgot to wrap arguments, quietly get wrong answer
tryCatch(
uniques(x, y), # uniques catches the error
error = function(e) { e })
uniques(c(x, y)) # uniques works like base::unique in most case
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.