makeUnique               package:limma               R Documentation

_M_a_k_e _V_a_l_u_e_s _o_f _C_h_a_r_a_c_t_e_r _V_e_c_t_o_r _U_n_i_q_u_e

_D_e_s_c_r_i_p_t_i_o_n:

     Paste characters on to values of a character vector to make them
     unique.

_U_s_a_g_e:

     makeUnique(x)

_A_r_g_u_m_e_n_t_s:

       x: object to be coerced to a character vector

_D_e_t_a_i_l_s:

     Repeat values of 'x' are labelled with suffixes "1", "2" etc.

_V_a_l_u_e:

     A character vector of the same length as 'x'

_A_u_t_h_o_r(_s):

     Gordon Smyth

_S_e_e _A_l_s_o:

     'makeUnique' is called by 'merge.RGList'. Compare with
     'make.unique' in the base package.

_E_x_a_m_p_l_e_s:

     x <- c("a","a","b")
     makeUnique(x)

