contents package:Biobase R Documentation _F_u_n_c_t_i_o_n _t_o _r_e_t_r_i_e_v_e _c_o_n_t_e_n_t_s _o_f _e_n_v_i_r_o_n_m_e_n_t_s _D_e_s_c_r_i_p_t_i_o_n: The contents method is used to retrieve the values stored in an environment. _U_s_a_g_e: contents(object, all.names) _A_r_g_u_m_e_n_t_s: object: The environment (data table) that you want to get all contents from all.names: a logical indicating whether to copy all values in 'as.list.environment' _V_a_l_u_e: A named list is returned, where the elements are the objects stored in the environment. The names of the elements are the names of the objects. The 'all.names' argument is identical to the one used in 'as.list.environment'. _A_u_t_h_o_r(_s): R. Gentleman _S_e_e _A_l_s_o: 'as.list.environment' _E_x_a_m_p_l_e_s: z <- new.env() multiassign(letters, 1:26, envir=z) contents(z)