如何在记录函数时打开示例中的.rda文件

时间:2016-08-13 17:29:58

标签: r package rstudio devtools

我第一次面对R开发包。

我使用name_file.rda文件作为示例:它包含一个list对象,其中包含多个对象(vectorsdata.frame等等),并且它放在namepackage\data文件夹中。

在记录包的功能时,我在示例中写下以下代码:

load("data/name_file.rda")

但是,在检查包时,它会给我以下错误:

load(file = "data/name_file.rda")
Warning in readChar(con, 5L, useBytes = TRUE) :
  cannot open compressed file 'data/name_file.rda', probable reason 'No such file or directory'
Error in readChar(con, 5L, useBytes = TRUE) : cannot open the connection
Calls: load -> readChar
Execution halted
Errore: Command failed (1)
Esecuzione interrotta

我觉得问题出在我使用的代码或错误选择的目录上。 我使用RStudio在Mac上编程。有什么建议吗?

提前致谢。

0 个答案:

没有答案