Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这可能很简单,但我搜索了很多,但找不到解决方法。
我在服务器上使用 Rstudio 2.15.1,因为我们使用大数据集并且服务器有更多的内存来处理它。我想加载一个csv文件
x <- read.csv.ffdf(file=file.path(getwd(),"test.csv"))
从“ff”包和电脑中它工作正常,但在服务器中我收到消息
setwd(dfile) 中的错误:无法更改工作目录
有谁知道我该如何解决这个问题?
我认为这与 ff 存储 ff 文件的位置有关。它将这些文件存储在 getOption("fftempdir") 中。您有权访问该目录吗?也许您在服务器上的权限不允许您访问该文件夹?在这种情况下,将 options(fftempdir = "path/to/your/folder") 设置为您有权访问的文件夹。