attributes               package:base               R Documentation

_O_b_j_e_c_t _A_t_t_r_i_b_u_t_e _L_i_s_t_s

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

     These functions access an object's attribute list. The first form
     above returns the an object's attribute list. The assignment forms
     make the list on the right-hand side of the assignment the
     object's attribute list (if appropriate).

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

     attributes(obj)
     attributes(obj) <- list
     mostattributes(obj) <- list

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

     The `mostattributes' assignment takes special care for the `dim',
     `names' and `dimnames' attributes, and assigns them only when that
     is valid whereas as `attributes' assignment would give an error in
     that case.

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

     `attr'.

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

     x <- cbind(a=1:3, pi=pi) # simple matrix w/ dimnames
     str(attributes(x))

     ## strip an object's attributes:
     attributes(x) <- NULL
     x # now just a vector of length 6

     mostattributes(x) <- list(mycomment = "really special", dim = 3:2,
        dimnames = list(LETTERS[1:3], letters[1:5]), names = paste(1:6))
     x # dim(), but not {dim}names

