我正在试图弄清楚如何在我当前的目录中应用for循环,以便我可以以只剩下前12行的方式分离我的CSV文件(大约1000个),用"分隔它们。 ;" &安培;最后取第10,11行的总和12。
我试过了:
setwd("C:\\Users\\temp")
data = list.files(pattern="*.csv")
for (i in 1:seq_along(data)) {
read.csv(temp[i], header= FALSE, sep=";")
print(i)
}
但那显然根本不起作用。
答案 0 :(得分:0)
试试这个:
for (i in seq_along(data)) {
temp <- read.csv(data[i], header= FALSE, sep=";")
print(temp)
}