0

我在 R 中运行函数时遇到问题。每当我想运行它们时,我总是会收到函数/对象不可用的消息。虽然我将它保存在工作目录中。为了让它运行,我必须将它粘贴到 R 窗口中。任何关于我缺少什么的想法都非常感谢。

4

2 回答 2

3

Use the source function to read the file.

If you do this a lot, I recommend the package devtools, or RStudio. Or both.

于 2012-12-08T19:46:15.557 回答
0

如上所述,有几个步骤要遵循。如果其中一个丢失,它将无法工作:-)

1)设置你的源文件夹

setwd("///.../admin/Documents") 

2)创建您的功能并保存它:

fun = function(...){
your function
}

dump("fun", file = "Code_fun.R")

3)调用你的函数

source("Code_fun.R")

然后你可以继续

fun(3) = ...
于 2017-10-05T09:36:44.260 回答