Interactively view vignettes for package(s) or return a dataframe of vignettes and accompanying information.
p_vignette(..., char, interactive = TRUE, character.only = FALSE)
p_vign(..., char, interactive = TRUE, character.only = FALSE)
Character vector containing packages to find vignettes for. If
you are calling p_vignette
from within a function (or just having
difficulties calling it using a character vector input) then pass your
character vector of packages to this parameter directly.
logical. If TRUE
will generate an HTML list of
selections.
logical. If TRUE
then p_vignette
will
only accept a single input which is a character vector containing the names
of packages to find vignettes for.
name(s) of package(s).
if (FALSE) { # \dontrun{
p_vignette(interactive = FALSE)
p_vignette()
p_vign()
p_vign(pacman)
p_vign(grid, utils)
p_vign(grid, utils, interactive = FALSE)
p_vign(fortunes)
} # }