l_web {loon} | R Documentation |
Open a browser with loon's R documentation webpage
Description
l_web
opens a browser with the relevant page on the
official loon documentation website. This is constructed by joining together
the information provided by the arguments site
/package
/directory
/page
.
Default would be the documentation found at https://great-northern-diver.github.io/loon/.
Usage
l_web(
page = "index",
directory = c("home", "reference", "articles"),
package = c("loon", "loon.data", "loon.ggplot", "loon.tourr", "ggmulti", "zenplots",
"loon.shiny", "diveR"),
site = "https://great-northern-diver.github.io",
...
)
Arguments
page |
relative path to a page (the ".html" part may be omitted) |
directory |
if |
package |
a string identifying the package name having an online documentation
(default |
site |
the URL of the site (default |
... |
arguments forwarded to |
See Also
Examples
## Not run:
l_web()
#
vignette("introduction", package = "loon")
# or
l_web(page = "introduction", directory = "articles")
# or
l_web(package = "loon.data", directory = "reference")
#
help(l_hist)
l_web(page = "l_hist", directory = "reference")
## End(Not run)