我无法弄清楚这里的问题是什么。
我已经创建了我的包,我现在正在努力确保它写得很好等。
为此,我使用'goodpractice'包。 我运行如下:
gp("MyPackageR")
它说:
Preparing: covr
Error: `path` is invalid: MyPackageR
In addition: Warning message:
In normalizePath(path) : path[1]="MyPackageR": No such file or directory
然后我将其作为:
运行gp("~/R/x86_64-pc-linux-gnu-library/3.4/MyPackageR")
并且它运行但是这次当它到达我的tests文件夹时,我在其中指定了一个文件路径,如下所示:load(file="./data/PathDataFrameFinal.rda")
它再次出现错误:
cannot open compressed file './data/PathDataFrameFinal.rda', probable reason 'No such file or directory'
我认为这必须是我的包的文件路径的问题,我希望文件路径是这样的,我可以指定包名称,而不是其位置的绝对路径。我怎么能这样做?
getwd()是"/home/rstudio/MyPackageR"