Скреблінг таблиць HTML у рамки даних R за допомогою пакету XML


153

Як скребти HTML-таблиці за допомогою пакету XML?

Візьмемо, наприклад, цю сторінку Вікіпедії про футбольну команду Бразилії . Я хотів би прочитати це в R і отримати таблицю "список усіх матчів, які Бразилія зіграла проти визнаних команд FIFA" як фрейму даних. Як я можу це зробити?


11
Щоб опрацювати селектори xpath, перегляньте selectorgadget.com/ - це приголомшливо
hadley

Відповіді:


144

… Або коротша спроба:

library(XML)
library(RCurl)
library(rlist)
theurl <- getURL("https://en.wikipedia.org/wiki/Brazil_national_football_team",.opts = list(ssl.verifypeer = FALSE) )
tables <- readHTMLTable(theurl)
tables <- list.clean(tables, fun = is.null, recursive = FALSE)
n.rows <- unlist(lapply(tables, function(t) dim(t)[1]))

вибрана таблиця - найдовша на сторінці

tables[[which.max(n.rows)]]

Довідка readHTMLTable також надає приклад зчитування простої текстової таблиці з елемента PRE HTML за допомогою htmlParse (), getNodeSet (), textConnection () та read.table ()
Dave X

48
library(RCurl)
library(XML)

# Download page using RCurl
# You may need to set proxy details, etc.,  in the call to getURL
theurl <- "http://en.wikipedia.org/wiki/Brazil_national_football_team"
webpage <- getURL(theurl)
# Process escape characters
webpage <- readLines(tc <- textConnection(webpage)); close(tc)

# Parse the html tree, ignoring errors on the page
pagetree <- htmlTreeParse(webpage, error=function(...){})

# Navigate your way through the tree. It may be possible to do this more efficiently using getNodeSet
body <- pagetree$children$html$children$body 
divbodyContent <- body$children$div$children[[1]]$children$div$children[[4]]
tables <- divbodyContent$children[names(divbodyContent)=="table"]

#In this case, the required table is the only one with class "wikitable sortable"  
tableclasses <- sapply(tables, function(x) x$attributes["class"])
thetable  <- tables[which(tableclasses=="wikitable sortable")]$table

#Get columns headers
headers <- thetable$children[[1]]$children
columnnames <- unname(sapply(headers, function(x) x$children$text$value))

# Get rows from table
content <- c()
for(i in 2:length(thetable$children))
{
   tablerow <- thetable$children[[i]]$children
   opponent <- tablerow[[1]]$children[[2]]$children$text$value
   others <- unname(sapply(tablerow[-1], function(x) x$children$text$value)) 
   content <- rbind(content, c(opponent, others))
}

# Convert to data frame
colnames(content) <- columnnames
as.data.frame(content)

Відредаговано, щоб додати:

Вибірка зразка

                     Opponent Played Won Drawn Lost Goals for Goals against  % Won
    1               Argentina     94  36    24   34       148           150  38.3%
    2                Paraguay     72  44    17   11       160            61  61.1%
    3                 Uruguay     72  33    19   20       127            93  45.8%
    ...

7
Для тих , хто ще , хто пощастило знайти цей пост, цей сценарій, швидше за все , не виконуються , якщо користувач не додає їх «User-Agent» інформацію, як описано в цій іншої корисної пост: stackoverflow.com/questions/9056705 / ...
Rguy

26

Ще один варіант використання Xpath.

library(RCurl)
library(XML)

theurl <- "http://en.wikipedia.org/wiki/Brazil_national_football_team"
webpage <- getURL(theurl)
webpage <- readLines(tc <- textConnection(webpage)); close(tc)

pagetree <- htmlTreeParse(webpage, error=function(...){}, useInternalNodes = TRUE)

# Extract table header and contents
tablehead <- xpathSApply(pagetree, "//*/table[@class='wikitable sortable']/tr/th", xmlValue)
results <- xpathSApply(pagetree, "//*/table[@class='wikitable sortable']/tr/td", xmlValue)

# Convert character vector to dataframe
content <- as.data.frame(matrix(results, ncol = 8, byrow = TRUE))

# Clean up the results
content[,1] <- gsub(" ", "", content[,1])
tablehead <- gsub(" ", "", tablehead)
names(content) <- tablehead

Дає цей результат

> head(content)
   Opponent Played Won Drawn Lost Goals for Goals against % Won
1 Argentina     94  36    24   34       148           150 38.3%
2  Paraguay     72  44    17   11       160            61 61.1%
3   Uruguay     72  33    19   20       127            93 45.8%
4     Chile     64  45    12    7       147            53 70.3%
5      Peru     39  27     9    3        83            27 69.2%
6    Mexico     36  21     6    9        69            34 58.3%

Відмінний дзвінок із використанням xpath. Незначна точка: ви можете трохи спростити аргумент шляху, змінивши // * / на //, наприклад, "// table [@ class = 'wikitable sortable'] / tr / th"
Річі Коттон,

Я отримую помилку "Сценарії повинні використовувати інформаційний рядок User-Agent із контактною інформацією, або вони можуть бути заблоковані IP-адресою без попереднього повідомлення." [2] "Чи існує спосіб
вирішити

2
параметри (RCurlOptions = список (useragent = "zzzz")). Дивіться також omegahat.org/RCurl/FAQ.html розділ "Час виконання" для інших альтернатив та обговорень.
учень

25

rvestПоряд з xml2інший популярний пакет для розбору HTML веб - сторінок.

library(rvest)
theurl <- "http://en.wikipedia.org/wiki/Brazil_national_football_team"
file<-read_html(theurl)
tables<-html_nodes(file, "table")
table1 <- html_table(tables[4], fill = TRUE)

Синтаксис простіший у використанні, ніж xmlпакет, і для більшості веб-сторінок він пропонує всі варіанти, які потребує.


Read_html дає мені помилку "" файл: ///Users/grieb/Auswertungen/tetyana-snp-2016/data/snp-nexus/15/SNP%20Annotation%20Tool.html "не існує в поточному робочому каталозі (' / Користувачі / grieb / Auswertungen / tetyana-snp-2016 / code '). "
scs
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.