This package extends the base R functionality around checking
for unique and duplicate values in vectors.
Functions to find all matches, or the orphan, duplicate or triplicate or other replicated values in a vector.
The following changes are documented since the first release
of this package on CRAN:
%!in% This function tests for the opposite of the commonly
used testing operator "%in%"
as documented in match.
Added documentation Added documentation for the package as a whole.
Implemented this change log.
Improved documentation Cleaned and otherwise improved documentation
that is generated by way of the tuplicated This function is a major addition to the package.
It provides a generic way to find elements of a
vector that are replicated n or more times.
Fundamentally it depends only on the code for
duplicated as in the first version
of this
package released to CRAN. The implementation
of triplicated has not been changed
in this
in this update from version 0.3-06, but it will be
changed to call tuplicated
with tuple = 3
in a future release.
Added tuplicate This function is another major addition. It provides
a generic way to find elements of a vector that are
replicated exactly n times. It depends on the code
for the newly-released
tuplicated, and on the code
for orphan as in the initial package
released to CRAN.
The implementation of
triplicate has not changed
from version 0.3-06, but it will be changed to call
tuplicate with tuple = 3
in a future release.
}