重複の可能性:
複数の CSV ファイルを別々のデータ フレームに読み込む
URL の一部を for ループで埋めるにはどうすればよいですか。たとえば、次の 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="|")
}