browseVignettes package:utils R Documentation _L_i_s_t _V_i_g_n_e_t_t_e_s _i_n _a_n _H_T_M_L _B_r_o_w_s_e_r _D_e_s_c_r_i_p_t_i_o_n: List available vignettes in an HTML browser with links to PDF, LaTeX/noweb source, and (tangled) R code (if available). _U_s_a_g_e: browseVignettes(package = NULL, lib.loc = NULL, all = TRUE) ## S3 method for class 'browseVignettes': print(x, ...) _A_r_g_u_m_e_n_t_s: package: a character vector with the names of packages to search through, or 'NULL' in which "all" packages (as defined by argument 'all') are searched. lib.loc: a character vector of directory names of R libraries, or 'NULL'. The default value of 'NULL' corresponds to all libraries currently known. all: logical; if 'TRUE' search all available packages in the library trees specified by 'lib.loc', and if 'FALSE', search only attached packages. x: Object of class 'browseVignettes'. ...: Further arguments, ignored by the 'print' method. _D_e_t_a_i_l_s: Function 'browseVignettes' returns an object of the same class; the print method displays it as an HTML page in a browser (using 'browseURL'). _S_e_e _A_l_s_o: 'browseURL', 'vignette' _E_x_a_m_p_l_e_s: ## Not run: ## List vignettes from all *attached* packages browseVignettes(all = FALSE) ## List vignettes from a specific package browseVignettes("grid") ## End(Not run)