View source: R/is_duplicated.R
is_duplicated | R Documentation |
List duplicate values
is_duplicated(vect, na.rm = FALSE, ...)
vect |
vector |
na.rm |
exclude NA values |
... |
additional arguments passed to 'base::duplicated' |
a logical vector the same length as 'vect' indicating duplicated values
is_duplicated( c(1:10, 1:5) ) is_duplicated( c(NA, NA) ) is_duplicated( c(NA, NA), na.rm=TRUE )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.