page package:utils R Documentation _I_n_v_o_k_e _a _P_a_g_e_r _o_n _a_n _R _O_b_j_e_c_t _D_e_s_c_r_i_p_t_i_o_n: Displays a representation of the object named by 'x' in a pager _via_ 'file.show'. _U_s_a_g_e: page(x, method = c("dput", "print"), ...) _A_r_g_u_m_e_n_t_s: x: An R object, or a character string naming an object. method: The default method is to dump the object _via_ 'dput'. An alternative is to use 'print' and capture the output to be shown in the pager. ...: additional arguments for 'dput', 'print' or 'file.show' (such as 'title'). _D_e_t_a_i_l_s: If 'x' is a length-one character vector, it is used as the name of an object to look up in the environment from which 'page' is called. All other objects are displayed directly. A default value of 'title' is passed to 'file.show' if one is not supplied in '...'. _S_e_e _A_l_s_o: 'file.show', 'edit', 'fix'. To go to a new page when graphing, see 'frame'. _E_x_a_m_p_l_e_s: ## Not run: ## four ways to look at the code of 'page' page(page) # as an object page("page") # a character string v <- "page"; page(v) # a length-one character vector page(utils::page) # a call ## End(Not run)