1

我相信这个包XML有一个解决方案。但是,哪个功能是正确的?

例如: http ://en.wikipedia.org/wiki/List_of_deaths_on_eight-thousanders

4

1 回答 1

3

我想有20张桌子。使用readHTMLTable您可以提取所有表:

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

library(XML)
ll <- readHTMLTable(url)
length(ll)
[1] 20
于 2013-10-31T12:07:15.973 回答