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?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。