Use these functions to search the web directly from your browser, building advanced queries and supplying common useful R related domains.
Query Github's internal search engine.
Query a search on rseek.org.
Query a search on the R Nabble Forum. Nabble is an innovative search engine for R messages.
search_online(s, query_url = "https://google.com/search?q=")
search_gh(
s,
type = "all",
language = NULL,
topic = NULL,
user = NULL,
org = NULL
)
search_rseek(s)
search_finzi(s)
search_nabble(s)
search_google(s)
search_rproject(s)
search_metacran(s)
string to search for
string representing the URL to query; defaults to Google
what to search for, see details for options
optional language filter
optional topic filter
optional user filter
optional org filter
See https://cloud.r-project.org/search.html which showcases Google's advanced search feature to query only R-Project domain sites via the Google Search Engine.
search_gh()
:
search_rseek()
:
search_finzi()
:
search_nabble()
:
search_google()
:
search_rproject()
:
search_metacran()
:
# default search on google
search_online("polished.tech")
# search github (note: &ref=opensearch)
search_online("polished", "https://github.com/search?q=%s&ref=opensearch")
# search Github with language:r, org:tychobra for 'polished' (note: '%3A' represents a ':')
search_online("polished", "https://github.com/search?q=%s+language%3Ar+org%3Atychobra")
search_gh("websocket", language = "r", topic = "rshiny")
# search your org
search_gh("polished", org = "tychobra")