apropos
位於 utils
包(package)。 說明
apropos()
返回一個字符向量,給出搜索列表中匹配(作為正則表達式)what
的對象名稱。
find()
返回可以找到給定名稱的對象的位置。
用法
apropos(what, where = FALSE, ignore.case = TRUE,
dot_internals = FALSE, mode = "any")
find(what, mode = "any", numeric = FALSE, simple.words = TRUE)
參數
what |
字符串。對於 |
where, numeric |
指示是否還應返回搜索列表中的位置的邏輯 |
ignore.case |
邏輯指示搜索是否應不區分大小寫,默認情況下為 |
dot_internals |
邏輯指示搜索結果是否應顯示 |
mode |
特點;如果不是 |
simple.words |
邏輯性;如果 |
細節
如果mode != "any"
,則僅考慮那些模式為mode
的對象。
find
是用於執行與 apropos
類似任務的不同用戶接口。默認情況下 ( simple.words == TRUE
),僅匹配全名。與 apropos
不同,匹配始終區分大小寫。
與默認行為不同ls
,以‘開頭的名稱.' 包含在內,但僅在以下情況下才包含基本 ‘internal’ 對象:dot_internals
是真的。
值
對於 apropos
,按名稱排序的字符向量。對於where = TRUE
,其名稱給出了搜索路徑上的(數字)位置。
對於 find
,環境名稱的字符向量或(對於 numeric = TRUE
)搜索路徑上位置的數字向量,名稱為相應環境的名稱。
例子
require(stats)
## Not run: apropos("lm")
apropos("GLM") # several
apropos("GLM", ignore.case = FALSE) # not one
apropos("lq")
cor <- 1:pi
find("cor") #> ".GlobalEnv" "package:stats"
find("cor", numeric = TRUE) # numbers with these names
find("cor", numeric = TRUE, mode = "function") # only the second one
rm(cor)
## Not run: apropos(".", mode="list") # a long list
# need a DOUBLE backslash '\\' (in case you don't see it anymore)
apropos("\\[")
# everything % not diff-able
length(apropos("."))
# those starting with 'pr'
apropos("^pr")
# the 1-letter things
apropos("^.$")
# the 1-2-letter things
apropos("^..?$")
# the 2-to-4 letter things
apropos("^.{2,4}$")
# the 8-and-more letter things
apropos("^.{8,}$")
table(nchar(apropos("^.{8,}$")))
作者
Originally, Kurt Hornik and Martin Maechler (May 1997).
也可以看看
glob2rx
將通配符模式轉換為正則表達式。
objects
用於從一個位置列出對象,help.search
用於搜索幫助係統,search
用於搜索路徑。
相關用法
- R aspell-utils 拚寫檢查實用程序
- R available.packages 列出類似 CRAN 的存儲庫中的可用軟件包
- R adist 近似弦距
- R aregexec 近似字符串匹配位置
- R arrangeWindows 在 MS Windows 上重新排列 Windows
- R aspell 拚寫檢查接口
- R askYesNo 提出是/否問題
- R alarm 提醒用戶
- 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 Rscript R 前端腳本
- R bug.report 發送錯誤報告
- R PkgUtils 用於構建和檢查附加包的實用程序
- R cite 引用參考書目條目
- R SweaveSyntConv 轉換 Sweave 語法
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Find Objects by (Partial) Name。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。