duplicated2 | R Documentation |
The native duplicated function determines which elements of a vector
or data frame are duplicates of elements already observed in the vector or the
data frame provided. Therefore, only the second occurence (or third or nth)
of an element is considered as a duplicate.
duplicated2
is similar but will also mark the first occurence as a
duplicate (see examples).
duplicated2(x)
x |
a vector, a data frame or a matrix |
A logical vector indicated wich elements are duplicated in x
.
https://forums.cirad.fr/logiciel-R/viewtopic.php?p=2968
duplicated
df <- data.frame(x = c("a", "b", "c", "b", "d", "c"), y = c(1, 2, 3, 2, 4, 3)) df duplicated(df) duplicated2(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.