browseVignettes {utils} | R Documentation |
List Vignettes in an HTML Browser
Description
List available vignettes in an HTML browser with links to PDF, LaTeX/Noweb source, and (tangled) R code (if available).
Usage
browseVignettes(package = NULL, lib.loc = NULL, all = TRUE)
## S3 method for class 'browseVignettes'
print(x, ...)
Arguments
package |
a character vector with the names of packages to
search through, or |
lib.loc |
a character vector of directory names of R libraries,
or |
all |
logical; if |
x |
Object of class |
... |
Further arguments, ignored by the |
Details
Function browseVignettes
returns an object of the same class;
the print method displays it as an HTML page in a browser (using
browseURL
).
See Also
Examples
## List vignettes from all *attached* packages
browseVignettes(all = FALSE)
## List vignettes from a specific package
browseVignettes("grid")
[Package utils version 4.4.1 Index]