system.file未导出错误

时间:2016-03-29 14:22:46

标签: r roxygen2 r-package

当我尝试使用devtools时遇到错误:system.file() 错误:在命名我的包时,'namespace:devtools'不会导出对象'system.file'。

在我的roxygen2中,我添加了以下行

 #' @importFrom devtools system.file

但是我收到了这个错误。我应该在哪里出口?

我必须尝试这个,因为我的roxygen2行的示例部分的“构建检查”失败

  pathToFile <- system.file("data",package = "yorkr")
  getBatsmanDetails(team="India",name="Kohli",dir=pathToFile)

出现此错误

  Warning in readChar(con, 5L, useBytes = TRUE) :cannot open compressed file   
:/Users/Ganesh/AppData/Local/Temp/RtmpCQxCAB/RLIBS_2c8411c225be/yorkr/data/Ind ia-BattingDetails.RData', probable reason 'No such file or directory'
   Error in readChar(con, 5L, useBytes = TRUE) : cannot open the connection

system.file()似乎调用基本版本而不是devtools版本

请让我知道必须做什么

0 个答案:

没有答案