我終於能夠編寫出my scraping的代碼。這似乎是工作的罰款,然後突然當我再次運行它,我得到了以下錯誤消息:錯誤<my code>:'closure'類型的對象不是子集合
Error in url[i] = paste("http://en.wikipedia.org/wiki/", gsub(" ", "_", :
object of type 'closure' is not subsettable
我不知道爲什麼,我什麼也沒有改變我的代碼。
請指教。
library(XML)
library(plyr)
names <- c("George Clooney", "Kevin Costner", "George Bush", "Amar Shanghavi")
for(i in 1:length(names)) {
url[i] = paste('http://en.wikipedia.org/wiki/', gsub(" ","_", names[i]) , sep="")
# some parsing code
}
此外,它發生在我的情況,當你只是錯誤地鍵入'[]'而不是'()'! – ehsan88