我想找到当前工作区中的所有函数,并考虑为此目的使用is.function
。
“问题”是is.function
期望真正的R 对象,而不是对象的字符串 name 。
这是我的解决方案,但使用eval(substitute(...))
似乎有点牵扯。任何想法更直接的方式或是唯一的方法可以做到这一点?
示例内容
x <- TRUE
y <- 10
foo1 <- function() message("hello world!")
foo2 <- function() message("hello world again!")
查找所有功能对象
wscontent <- ls(all.names=TRUE)
funs <- sapply(wscontent, function(ii) {
eval(substitute(is.function(OBJ), list(OBJ=as.name(ii))))
})
> funs
foo1 foo2 funs wscontent x y
TRUE TRUE FALSE FALSE FALSE FALSE
答案 0 :(得分:11)
怎么样
lsf.str()
应列出所有功能。
答案 1 :(得分:1)
funs <- sapply(wscontent, function(x) is.function(get(x)))
答案 2 :(得分:1)
我不久前写了一个更普通的玩具:
lstype<-function(type='closure'){
inlist<-ls(.GlobalEnv)
if (type=='function') type <-'closure'
typelist<-sapply(sapply(inlist,get),typeof)
return(names(typelist[typelist==type]))
}
答案 3 :(得分:0)
您可以使用eapply:
which(unlist(eapply(.GlobalEnv, is.function)))
...或者使用as.list:
which(sapply(as.list(.GlobalEnv), is.function))