如何在.r文件中显示函数

时间:2015-07-03 15:19:07

标签: r

我正在寻找一种方法来查看.r文件中的函数(如list.files)。使用谷歌但无法找到任何东西。有人解决了这个问题吗?

1 个答案:

答案 0 :(得分:0)

您可以source将其加入环境,然后使用lsis.function的组合。

e <- new.env()
source("file.R", e)  # or sys.source()

# which are the functions?
ls(e)[sapply(e, is.function)]

# get function definitions
lapply(e, function(x) if(is.function(x)) x)