home *** CD-ROM | disk | FTP | other *** search
-
- _A_r_r_a_y _L_a_b_e_l_s
-
- dimnames(x)
- dimnames(x) <- nlist
-
- _V_a_l_u_e:
-
- This function obtains the list of extent labels of the
- array given as its argument. The second form above can
- be used to set these labels.
-
- _S_e_e _A_l_s_o:
-
- rownames, colnames.
-
- _E_x_a_m_p_l_e_s:
-
- # simple versions of rownames and colnames
- # could be defined as follows
- rownames <- function(x) dimnames(x)[1]
- colnames <- function(x) dimnames(x)[2]
-
-