print.probetable package:matchprobes R Documentation _P_r_i_n_t _m_e_t_h_o_d _f_o_r _p_r_o_b_e_t_a_b_l_e _o_b_j_e_c_t_s _D_e_s_c_r_i_p_t_i_o_n: Prints class(x), nrow(x) and ncol(x), but not the elements of x. The motivation for having this method is that methods from the package 'base' such as 'print.matrix' and 'print.data.frame' will try to print the values of all elements of 'x', which can take inconveniently much time and screen space if 'x' is large. _U_s_a_g_e: ## S3 method for class 'probetable': print(x, ...) _A_r_g_u_m_e_n_t_s: x: an object of S3-class 'probetable'. ...: further arguments that get ignored. _S_e_e _A_l_s_o: 'print.matrix', 'print.data.frame' _E_x_a_m_p_l_e_s: a = as.data.frame(matrix(runif(1e6), ncol=1e3)) class(a) = c("probetable", class(a)) print(a) print(as.matrix(a[2:3, 4:6]))