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。值可以缩写。可能要搜索的区域: |
format |
已弃用。 |
sortby |
表示搜索结果如何排序的字符串(可以缩写): |
matchesPerPage |
每页显示多少个项目。 |
words |
显示与 |
细节
此函数旨在与 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.search
、 help.start
用于本地搜索。
browseURL
了解如何显示帮助文件。
相关用法
- R RShowDoc 显示 R 手册和其他文档
- R Rscript R 前端脚本
- R Rprof 启用 R 执行分析
- R Rwin R 用于 Windows 配置
- R REMOVE 删除附加包
- R Rtangle Stangle 的 R 驱动程序
- R Rprofmem 启用 R 内存使用分析
- R RweaveLatex Sweave 的 R/LaTeX 驱动程序
- R select.list 从列表中选择项目
- R COMPILE 编译用于 R 的文件
- R readRegistry 读取 Windows 注册表配置单元
- R browseVignettes 在 HTML 浏览器中列出晕影
- R hasName 检查姓名
- R nsl 按主机名查找 IP 地址
- R edit 调用文本编辑器
- R create.post 准备电子邮件和帖子的辅助函数
- R hsearch-utils 帮助搜索实用程序
- R download.packages 从类似 CRAN 的存储库下载软件包
- R DLL.version MS Windows 上的 DLL 版本信息
- R ls.str 列表对象及其结构
- R bug.report 发送错误报告
- R PkgUtils 用于构建和检查附加包的实用程序
- R cite 引用参考书目条目
- R SweaveSyntConv 转换 Sweave 语法
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Search for Key Words or Phrases in Documentation。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。