Learn R Programming

genefu (version 2.4.2)

rename.duplicate: Function to rename duplicated strings.

Description

This function renames duplicated strings by adding their number of occurrences at the end.

Usage

rename.duplicate(x, sep = "_", verbose = FALSE)

Arguments

x
vector of strings.
sep
a character to be the separator between the number added at the end and the string itself.
verbose
TRUE to print informative messages, FALSE otherwise.

Value

  • new.xnew strings (without duplicates).
  • duplicated.xstrings which were originally duplicated.

Examples

Run this code
nn <- sample(letters[1:10], 30, replace=TRUE)
table(nn)
rename.duplicate(x=nn, verbose=TRUE)

Run the code above in your browser using DataLab