dim package:marray R Documentation _R_e_t_r_i_e_v_e _t_h_e _D_i_m_e_n_s_i_o_n_s _o_f _a_n _m_a_r_r_a_y_R_a_w, _m_a_r_r_a_y_N_o_r_m _o_r _m_a_r_r_a_y_I_n_f_o _O_b_j_e_c_t _D_e_s_c_r_i_p_t_i_o_n: Retrieve the number of rows (genes) and columns (arrays) for an marrayRaw, marrayNorm or marrayInfo object. _U_s_a_g_e: ## S3 method for class 'marrayRaw': dim(x) _A_r_g_u_m_e_n_t_s: x: an object of class 'marrayRaw', 'marrayNorm' or 'marrayInfo' _D_e_t_a_i_l_s: Microarray data objects share many analogies with ordinary matrices in which the rows correspond to spots or genes and the columns to arrays. These methods allow one to extract the size of microarray data objects in the same way that one would do for ordinary matrices. A consequence is that row and column commands 'nrow(x)', 'ncol(x)' and so on also work. _V_a_l_u_e: Numeric vector of length 2. The first element is the number of rows (genes) and the second is the number of columns (arrays). _A_u_t_h_o_r(_s): modified from Gordon Smyth's function _S_e_e _A_l_s_o: 'dim' in the base package. _E_x_a_m_p_l_e_s: M <- A <- matrix(11:14,4,2) rownames(M) <- rownames(A) <- c("a","b","c","d") colnames(M) <- colnames(A) <- c("A1","A2") MA <- new("marrayNorm", maM=M,maA=A) dim(MA) dim(M)