我創建了一個循環,通過一組文件進行迭代,並指定在文件中的數據給一個變量對象未找到[R
for(i in 1:8){
infile <-paste("coauthor", i,".csv",sep="")
coa[i]<-read.csv(infile,header = TRUE, sep="\t")
}
然而,我不斷收到錯誤交替
Error in read.table(file = file, header = header, sep = sep, quote = quote, :
object 'infile' not found
並更頻繁地
Error in paste("coauthor", i, ".csv", sep = "") : object 'i' not found
我在這裏錯過了什麼?
你的文件存儲在哪裏,'getwd()'的輸出是什麼? – Fernando
對不起,在執行此命令之前,我將wd設置爲正確的位置,就像'setwd(「D:/ n4jbatch」) getwd()'用getwd()生成正確的wd –
您會得到兩個非常不同的錯誤,我認爲需要更多的信息來解決這個問題。 – Fernando