如何查看S4功能的定义?例如,我想在封装TSdbi中看到TSconnect的定义。命令
showMethods("TSconnect")
显示除其他外,还有drv =“histQuoteDriver”,dbname =“character”的函数。
如何查看此功能的定义?如果它是S3函数,则只有第一个可定义的参数(drv),可以使用print(TSconnect.histQuoteDriver)进行检查。
编辑:从r-forge我找到了所需的输出:
setMethod("TSconnect", signature(drv="histQuoteDriver", dbname="character"),
definition= function(drv, dbname, user="", password="", host="", ...){
# user / password / host for future consideration
if (is.null(dbname)) stop("dbname must be specified")
if (dbname == "yahoo") {
con <- try(url("http://quote.yahoo.com"), silent = TRUE)
if(inherits(con, "try-error"))
stop("Could not establish TShistQuoteConnection to ", dbname)
close(con)
}
else if (dbname == "oanda") {
con <- try(url("http://www.oanda.com"), silent = TRUE)
if(inherits(con, "try-error"))
stop("Could not establish TShistQuoteConnection to ", dbname)
close(con)
}
else
warning(dbname, "not recognized. Connection assumed working, but not tested.")
new("TShistQuoteConnection", drv="histQuote", dbname=dbname, hasVintages=FALSE, hasPanels=FALSE,
user = user, password = password, host = host )
} )
有没有办法从R会话中获取此定义?
答案 0 :(得分:10)
S4类比较复杂,所以我建议reading this introduction。
在这种情况下,TSdbi是一个通用S4类的示例,它被所有特定数据库包(例如TSMySQL,TSPostgreSQL等)扩展。 TSdbi中的TSconnect()方法没有比您所看到的更多:drv =“character”,dbname =“character”是函数的参数,而不是函数本身。如果安装某些特定的数据库软件包并使用showMethods(“TSconnect”),您将看到该函数的所有特定实例。如果您随后使用特定的数据库驱动程序调用TSconnect(),它将使用相应的函数。
这也是汇总等功能的工作原理。例如,尝试拨打showMethods(summary)
。根据加载的包,您应该看到返回多个方法
您可以在R-Forge上轻松查看其源代码:http://r-forge.r-project.org/plugins/scmsvn/viewcvs.php/pkg/TSdbi/R/TSdbi.R?rev=70&root=tsdbi&view=markup。这是该功能的范围:
setGeneric("TSconnect", def= function(drv, dbname, ...) standardGeneric("TSconnect"))
setMethod("TSconnect", signature(drv="character", dbname="character"),
definition=function(drv, dbname, ...)
TSconnect(dbDriver(drv), dbname=dbname, ...))