Rev 68948 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/duplicated.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2014 R Core Team% Distributed under GPL 2 or later\name{duplicated}\title{Determine Duplicate Elements}\alias{duplicated}\alias{duplicated.default}\alias{duplicated.data.frame}\alias{duplicated.matrix}\alias{duplicated.array}\alias{anyDuplicated}\alias{anyDuplicated.default}\alias{anyDuplicated.array}\alias{anyDuplicated.matrix}\alias{anyDuplicated.data.frame}\description{\code{duplicated()} determines which elements of a vector or data frame are duplicatesof elements with smaller subscripts, and returns a logical vectorindicating which elements (rows) are duplicates.\code{anyDuplicated(.)} is a \dQuote{generalized} more efficientshortcut for \code{any(duplicated(.))}.}\usage{duplicated(x, incomparables = FALSE, \dots)\method{duplicated}{default}(x, incomparables = FALSE,fromLast = FALSE, nmax = NA, \dots)\method{duplicated}{array}(x, incomparables = FALSE, MARGIN = 1,fromLast = FALSE, \dots)anyDuplicated(x, incomparables = FALSE, \dots)\method{anyDuplicated}{default}(x, incomparables = FALSE,fromLast = FALSE, \dots)\method{anyDuplicated}{array}(x, incomparables = FALSE,MARGIN = 1, fromLast = FALSE, \dots)}\arguments{\item{x}{a vector or a data frame or an array or \code{NULL}.}\item{incomparables}{a vector of values that cannot be compared.\code{FALSE} is a special value, meaning that all values can becompared, and may be the only value accepted for methods other thanthe default. It will be coerced internally to the same type as\code{x}.}\item{fromLast}{logical indicating if duplication should be consideredfrom the reverse side, i.e., the last (or rightmost) of identicalelements would correspond to \code{duplicated = FALSE}.}\item{nmax}{the maximum number of unique items expected (greater than one).}\item{\dots}{arguments for particular methods.}\item{MARGIN}{the array margin to be held fixed: see\code{\link{apply}}, and note that \code{MARGIN = 0} maybe useful.}}\details{These are generic functions with methods for vectors (includinglists), data frames and arrays (including matrices).For the default methods, and whenever there are equivalent methoddefinitions for \code{duplicated} and \code{anyDuplicated},\code{anyDuplicated(x, ...)} is a \dQuote{generalized} shortcut for\code{any(duplicated(x, ...))}, in the sense that it returns the\emph{index} \code{i} of the first duplicated entry \code{x[i]} ifthere is one, and \code{0} otherwise. Their behaviours may bedifferent when at least one of \code{duplicated} and\code{anyDuplicated} has a relevant method.\code{duplicated(x, fromLast = TRUE)} is equivalent to but faster than\code{rev(duplicated(rev(x)))}.The data frame method works by pasting together a characterrepresentation of the rows separated by \code{\\r}, so may be imperfectif the data frame has characters with embedded carriage returns orcolumns which do not reliably map to characters.The array method calculates for each element of the sub-arrayspecified by \code{MARGIN} if the remaining dimensions are identicalto those for an earlier (or later, when \code{fromLast = TRUE}) element(in row-major order). This would most commonly be used to findduplicated rows (the default) or columns (with \code{MARGIN = 2}).Note that \code{MARGIN = 0} returns an array of the samedimensionality attributes as \code{x}.Missing values are regarded as equal, but \code{NaN} is not equal to\code{NA_real_}.Values in \code{incomparables} will never be marked as duplicated.This is intended to be used for a fairly small set of values and willnot be efficient for a very large set.When used on a data frame with more than one column, or an array ormatrix when comparing dimensions of length greater than one, thistests for identity of character representations. This willcatch people who unwisely rely on exact equality of floating-pointnumbers!Character strings will be compared as byte sequences if any input ismarked as \code{"bytes"} (see \code{\link{Encoding}}).Except for factors, logical and raw vectors the default \code{nmax = NA} isequivalent to \code{nmax = length(x)}. Since a hash table of size\code{8*nmax} bytes is allocated, setting \code{nmax} suitably cansave large amounts of memory. For factors it is automatically set tothe smaller of \code{length(x)} and the number of levels plus one (for\code{NA}). If \code{nmax} is set too small there is liable to be anerror: \code{nmax = 1} is silently ignored.\link{Long vectors} are supported for the default method of\code{duplicated}, but may only be usable if \code{nmax} is supplied.}\value{\code{duplicated()}:For a vector input, a logical vector of the same length as\code{x}. For a data frame, a logical vector with one element foreach row. For a matrix or array, and when \code{MARGIN = 0}, alogical array with the same dimensions and dimnames.\code{anyDuplicated()}: an integer or real vector of length one withvalue the 1-based index of the first duplicate if any, otherwise\code{0}.}\section{Warning}{Using this for lists is potentially slow, especially if the elementsare not atomic vectors (see \code{\link{vector}}) or differ onlyin their attributes. In the worst case it is \eqn{O(n^2)}.}\references{Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)\emph{The New S Language}.Wadsworth & Brooks/Cole.}\seealso{\code{\link{unique}}.}\examples{x <- c(9:20, 1:5, 3:7, 0:8)## extract unique elements(xu <- x[!duplicated(x)])## similar, same elements but different order:(xu2 <- x[!duplicated(x, fromLast = TRUE)])## xu == unique(x) but unique(x) is more efficientstopifnot(identical(xu, unique(x)),identical(xu2, unique(x, fromLast = TRUE)))duplicated(iris)[140:143]duplicated(iris3, MARGIN = c(1, 3))anyDuplicated(iris) ## 143\dontshow{% array & data.frame methods:stopifnot(identical(anyDuplicated(iris), 143L),identical(anyDuplicated(iris3, MARGIN = c(1, 3)), 143L))}anyDuplicated(x)anyDuplicated(x, fromLast = TRUE)}\keyword{logic}\keyword{manip}