可能重复:
将多个 CSV 文件读入单独的数据帧
如何用 for 循环填充部分 URL,我尝试了一个有效的 URL,例如:
data <- read.table("http://somelink.php?station=2&start=2012-01-01&etc", header=T,sep="|")
但是当我将代码更改为循环时,它失败了:
station <- c(1:10)
Year <- format(Sys.time(), "%Y")
for (i in station){
data <- read.table("http://somelink.php?station=i&start=Year-01-01&etc", header=T,sep="|")
}