2013-10-31 41 views

回答

2

我覺得有20桌。使用readHTMLTable您可以提取所有表:

url <- "http://en.wikipedia.org/wiki/List_of_deaths_on_eight-thousanders" 

library(XML) 
ll <- readHTMLTable(url) 
length(ll) 
[1] 20 
相關問題