The R Project SVN R

Rev

Rev 61150 | Rev 76240 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 61150 Rev 61433
Line 27... Line 27...
27
  \code{make.unique(c(A, B)) == make.unique(c(make.unique(A), B))}.
27
  \code{make.unique(c(A, B)) == make.unique(c(make.unique(A), B))}.
28
 
28
 
29
  In other words, you can append one string at a time to a vector,
29
  In other words, you can append one string at a time to a vector,
30
  making it unique each time, and get the same result as applying
30
  making it unique each time, and get the same result as applying
31
  \code{make.unique} to all of the strings at once.
31
  \code{make.unique} to all of the strings at once.
32
    
32
 
33
  If character vector \code{A} is already unique, then
33
  If character vector \code{A} is already unique, then
34
  \code{make.unique(c(A, B))} preserves \code{A}.
34
  \code{make.unique(c(A, B))} preserves \code{A}.
35
}
35
}
36
\author{Thomas P. Minka}
36
\author{Thomas P. Minka}
37
\seealso{
37
\seealso{