dimnames                package:base                R Documentation

_D_i_m_n_a_m_e_s _o_f _a_n _O_b_j_e_c_t

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

     Retrieve or set the dimnames of an object.

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

     dimnames(x)
     dimnames(x) <- nlist

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

     The functions `dimnames' and `dimnames<-' are generic.

     For an `array' (and hence in particular, for a `matrix'), they
     retrieve or set the `dimnames' attribute (see attributes) of the
     object.

     Both have methods for data frames.  The dimnames of a data frame
     are its `row.names' attribute and its `names'.

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

     `rownames', `colnames'; `array', `matrix', `data.frame'.

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

     ## simple versions of rownames and colnames
     ## could be defined as follows
     rownames0 <- function(x) dimnames(x)[[1]]
     colnames0 <- function(x) dimnames(x)[[2]]

