truenames           package:adegenet           R Documentation(utf8)

_R_e_s_t_o_r_e _t_r_u_e _l_a_b_e_l_s _o_f _a_n _o_b_j_e_c_t

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

     The function 'truenames' returns some elements of an object
     (genind or genpop) using true names (as opposed to generic labels)
     for individuals, markers, alleles, and population.

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

     ## S4 method for signature 'genind':
     truenames(x)
     ## S4 method for signature 'genpop':
     truenames(x)

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

       x: a genind or a genpop object

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

     If x$pop is empty (NULL), a matrix similar to the x$tab slot but
     with true labels.

     If x$pop exists, a list with this matrix ($tab) and a population
     vector with true names ($pop).

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

     Thibaut Jombart t.jombart@imperial.ac.uk

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

     data(microbov)
     microbov

     microbov$tab[1:5,1:5]
     truenames(microbov)$tab[1:5,1:5]

