| helpSearchWeb {svMisc} | R Documentation |
Retrieve web documents, messages in R mailing lists, or wiki containing
apropos string.
helpSearchWeb(what, type = c("R", "archive", "wiki", "google"), browse = TRUE,
msg = browse, ...)
what |
the string(s) to search. In case of several strings, or several words, any of these words are searched. |
type |
the search engine, or location to use. |
browse |
do we actually show the page in the Web browser? If
|
msg |
do we issue a message indicating that a page should be displayed
shortly in the Web browser? If |
... |
further arguments to format the result page in case of
|
Returns the URL used invisibly (invoked for its side effect of opening the Web
browser with the search result, when browse = TRUE).
The RSiteSearch() function in the 'utils' package is used when
type = "R".
David Forrest <drf@vims.edu> & Philippe Grosjean <phgrosjean@sciviews.org> after Barry Rowland's original code
## Not run:
helpSearchWeb("volatility") # R site search, by default
helpSearchWeb("volatility", type = "google") # Google search
helpSearchWeb("volatility", type = "archive") # In the mailing list archive
helpSearchWeb("median mean", type = "wiki") # In the R Wiki
## End(Not run)