我试图通过URL中的变量,并使用jsonlite扁平化,但我不能够通过使用循环变量页面。 我如何循环中使用FromJSON?
pages<- list()
for(i in 1:20) {
mydata <- fromJSON("https:www.example.com/page="+i+"&access_token=xyz", flatten = TRUE)
}
filings <-rbind.pages(pages)
我试图通过URL中的变量,并使用jsonlite扁平化,但我不能够通过使用循环变量页面。 我如何循环中使用FromJSON?
pages<- list()
for(i in 1:20) {
mydata <- fromJSON("https:www.example.com/page="+i+"&access_token=xyz", flatten = TRUE)
}
filings <-rbind.pages(pages)
那这个呢?
pages<- list()
for(i in 1:20) {
mydata <- fromJSON(paste("https:www.example.com/page=", i, "&access_token=xyz", sep = "+"), flatten = TRUE)
}
filings <-rbind.pages(pages)