当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R RSiteSearch 搜索文档中的关键词或短语


R语言 RSiteSearch 位于 utils 包(package)。

说明

使用 https://search.r-project.org 的搜索引擎在各种文档中搜索关键词或短语,例如 R 手册、基础和 CRAN 包的帮助页面、插图、任务视图等,并在 Web 浏览器中查看它们。

用法

RSiteSearch(string,
            restrict = c("functions", "descriptions", "news", "Rfunctions",
                         "Rmanuals", "READMEs", "views", "vignettes"),
            format,
            sortby = c("score", "date:late", "date:early", "subject",
                       "subject:descending", "size", "size:descending"),
            matchesPerPage = 20,
            words = c("all", "any"))

参数

string

指定要搜索的单词或短语的字符串。如果要将单词作为一个实体进行搜索,请将它们括在(转义的)引号或大括号中。

restrict

字符向量,长度通常大于 1。值可以缩写。可能要搜索的区域:functions 用于 CRAN 软件包的帮助页面,descriptions 用于 CRAN 软件包的扩展说明,news 用于软件包 NEWS,Rfunctions 用于 R 基础软件包的帮助页面,Rmanuals 用于 R 手册, READMEs 用于 CRAN 包的自述文件,views 用于任务视图,vignettes 用于包插图。

format

已弃用。

sortby

表示搜索结果如何排序的字符串(可以缩写):
(score,date:late按日期排序,最新结果在前,date:early最早的第一个,subject对于按字母顺序排列的字幕,subject:descending对于逆字母顺序,size或者size:descending对于尺寸。)

matchesPerPage

每页显示多少个项目。

words

显示与 all 单词/短语(默认)或其中 any 匹配的结果。

细节

此函数旨在与 https://search.r-project.org 的搜索网站配合使用。

唯一的部分匹配适用于所有参数。每个新的浏览器窗口将保持打开状态,除非您将其关闭。

(不可见)传递给浏览器的完整 URL,包括查询字符串。

例子

# need Internet connection
## for phrase searching you may use (escaped) double quotes or brackets
RSiteSearch("{logistic regression} \"glm object\"")
RSiteSearch('"logistic regression"')

## Search in vignettes and help files of R base packages
## store the query string:
fullquery <- RSiteSearch("lattice", restrict = c("vignettes","Rfunctions"))
fullquery # a string of 112 characters

作者

Andy Liaw and Jonathan Baron and Gennadiy Starostin

也可以看看

help.searchhelp.start 用于本地搜索。

browseURL 了解如何显示帮助文件。

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Search for Key Words or Phrases in Documentation。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。