如何使用XML包来擦除html表?
举个例子,这个维基百科页面在Brazilian soccer team.我想读取它在R和得到“所有匹配巴西已经对FIFA认可的团队”表作为data.frame的列表。我如何做到这一点?
…或更短的尝试:
library(XML) theurl <- "http://en.wikipedia.org/wiki/Brazil_national_football_team" tables <- readHTMLTable(theurl) n.rows <- unlist(lapply(tables,function(t) dim(t)[1]))
挑选的表是页面上最长的一个
tables[[which.max(n.rows)]]