Web在R中抓取html表,但输出保持为空

时间:2019-03-12 16:45:14

标签: r web-scraping

我正在尝试将表格中的数据抓取到https://www.flashscore.com/football/france/coupe-de-la-ligue-2005-2006/results/

我编写了以下代码,但是输出results仍然为空。

library (rvest)
url <- "https://www.soccer24.com/france/coupe-de-la-ligue-2005-2006/results/"
results <- read_html(url) %>%
  html_nodes(xpath='/html/body/div[6]/div[1]/div/div[1]/div[2]/div[7]/div[3]/table') %>%
  html_table()

有人知道为什么results为空以及如何抓取该表吗?

0 个答案:

没有答案