r - 文件中的错误(文件, "rt"): cannot open the connection - cannot open file 'specdata' access denied

标签 r rstudio read.csv

我在 Windows 7 上运行 rStudio v3.1.2。这台笔记本电脑是 64 位计算机。

我正在参加 Coursera 提供的 JHU R 编程类(class),但遇到了问题第 1 部分中收到的错误。我在这个例子中保留了一些错误处理函数,所以我真的只是想展示我绝对需要的东西。我包含这些消息的唯一原因是为了证明必须满足所有条件才能继续。

  pollutantmean <- function(directory, pollutant, id=1:332) {

  setwd("C:\\Users\\WR-eSUB\\specdata")

  if(!isValidDirectory(directory)) {
        stop("Invalid input given.  Please specify valid directory to operate on.")
  }
  if(!isValidPollutant(pollutant)) {
        stop("Invalid input given.  Please specify valid pollutant (nitrate/sulfate).")
  }
  if(!isValidIdRange(id)) {
        stop("Invalid input given.  Please specify valid id range (1:332).")
  }
  sortedData = numeric()
  for (i in id) {
        thisFileName = paste(formatC(i, width = 3, flag = "0"), ".csv", sep="")
        thisFileRead = read.csv(directory, thisFileName)
        sortedData = c(sortedData, thisFileRead[[pollutant]])
  }
  mean(sortedData, na.rm = TRUE)
}

请注意,WR-eSUB 内部有一个名为 specdata 的文件夹,并且在文件夹内有一个包含 .csv 文件(也称为 specdata)的目录。我可以改变这一点,但到目前为止我一直在使用它,并且没有遇到任何问题。

当我调用 pollutantmean("specdata", "nitrate", 1:2) 时,我收到以下错误消息:

 Error in file(file, "rt") : cannot open the connection 
 In addition: Warning message: In file(file, "rt") : cannot open file 'specdata': Permission denied

现在,在我无数次尝试完成这部分作业时,我已经能够使用 lapply 等其他方式提取数据,但因为我一直陷入困境,所以我扔掉了所有东西并想以这种方式尝试.

我已经在网络上搜索过,试图找到这个解决方案。尽管事实上有几个已回答的问题,但似乎没有一个像这个一样令人困惑。 WR-eSUB 是一个管理文件夹,但之前尝试打开其中的文件时并未产生此错误。

最佳答案

睡个好觉后,我发现了问题。我根本没有使用目录,所以我需要添加它。

thisFileName = paste(directory, "/", formatC(i, width = 3, flag = "0"), ".csv", sep="")

关于r - 文件中的错误(文件, "rt"): cannot open the connection - cannot open file 'specdata' access denied,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28597536/

相关文章:

r - 如何为具有稳定映射的 ggplot2 中的分类变量分配颜色?

r - group_rows()命令中换行时的缩进 - R markdown 中的 kableExtra 包

RStudio 不显示 Rmd 文件中的代码,而记事本则显示

read.table() 错误,即使所有元素都存在

RMarkdown Octave 图

r - 比较回归系数时如何解释linearHypothesis函数的结果?

r - 在ggplot2中用不同的日期格式化x轴

r - install.packages 中的警告 : cannot open UR HTTP status was '404 Not Found'

读取带有日期和数字的 csv

r - 读取大量数字时使用 fread(R 中的 data.table)的错误?