我相信包XML
有一个解决方案。但是,哪个功能是正确的?
例如: http://en.wikipedia.org/wiki/List_of_deaths_on_eight-thousanders
答案 0 :(得分:3)
我认为有20张桌子。使用readHTMLTable
,您可以提取所有表格:
url <- "http://en.wikipedia.org/wiki/List_of_deaths_on_eight-thousanders"
library(XML)
ll <- readHTMLTable(url)
length(ll)
[1] 20