R語言
isS3method
位於 utils
包(package)。 說明
檢查 method
是否是有效/注冊的 S3 方法的名稱。或者,當指定f
和class
時,檢查f
是否是S3泛型函數的名稱以及paste(f, class, sep=".")
是否是有效的S3方法。
用法
isS3method(method, f, class, envir = parent.frame())
參數
method |
字符串,通常采用 |
f |
可選字符串,通常指定 S3 通用函數。當未指定 |
class |
可選字符串,通常指定 S3 類名稱。當未指定 |
envir |
|
值
logical
TRUE
或 FALSE
例子
isS3method("t") # FALSE - it is an S3 generic
isS3method("t.default") # TRUE
isS3method("t.ts") # TRUE
isS3method("t.test") # FALSE
isS3method("t.data.frame")# TRUE
isS3method("t.lm") # FALSE - not existing
isS3method("t.foo.bar") # FALSE - not existing
## S3 methods with "4 parts" in their name:
ff <- c("as.list", "as.matrix", "is.na", "row.names", "row.names<-")
for(m in ff) if(isS3method(m)) stop("wrongly declared an S3 method: ", m)
(m4 <- paste(ff, "data.frame", sep="."))
for(m in m4) if(!isS3method(m)) stop("not an S3 method: ", m)
也可以看看
相關用法
- R isS3stdGeneric 檢查函數是否充當 S3 通用函數
- R install.packages 從存儲庫或本地文件安裝包
- R installed.packages 查找已安裝的軟件包
- 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 RSiteSearch 搜索文檔中的關鍵詞或短語
- R glob2rx 將通配符或通配符模式更改為正則表達式
- R getFromNamespace 用於開發命名空間的實用函數
- R demo R 函數演示
- R mirrorAdmin 管理存儲庫鏡像
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Is 'method' the Name of an S3 Method?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。