使用R进行FIFA比赛统计的网页抓取

时间:2018-07-04 14:36:06

标签: r rvest

对于2018年FIFA世界杯,FIFA提供每场比赛的统计信息。在https://www.fifa.com/worldcup/matches/match/300331537/#match-statistics

说“法国对阿根廷”

我目前正在使用rvest进行抓取。

v.url <- 'https://www.fifa.com/worldcup/matches/match/300331537/#match-statistics'

df.extraction <- read_html(v.url) %>%
  html_nodes("table") %>%
  .[1] %>%
  html_table(fill=TRUE) %>%
  .[[1]]

什么也不返回。

任何人都有提取以上统计数据的经验吗?

0 个答案:

没有答案