| browseURL {utils} | R Documentation |
Load a given URL into a WWW browser.
browseURL(url, browser = getOption("browser"), encodeIfNeeded = FALSE)
url |
a non-empty character string giving the URL to be loaded. |
browser |
a non-empty character string giving the name of the program to be used as hypertext browser. It should be in the PATH, or a full path specified. Alternatively, an R function to be called to invoke the browser. Under Windows |
encodeIfNeeded |
Should the URL be encoded by
|
The default browser is set by option "browser", in turn set by
the environment variable R_BROWSER if that is set, otherwise to
NULL.
To suppress showing URLs altogether, use the value "false".
Some browsers have required : be replaced by | in file
paths: others do not accept that. All seem to accept \ as a
path separator even though the RFC1738 standard requires /.
To suppress showing URLs altogether, set browser="false".
## Not run: browseURL("http://www.r-project.org")
browseURL("file://d:/R/R-2.5.1/doc/html/index.html",
browser="C:/Program Files/Mozilla Firefox/firefox.exe")
## End(Not run)