R Web使用Rvest和SelectorGadget抓取体育赔率

时间:2018-11-19 12:54:18

标签: html web-scraping rvest

https://www.oddsportal.com/basketball/usa/nba/outrights/

enter image description here

所以我试图消除NBA的未来机会。我希望返回结果是

“金州勇士”,“ 1.58”

“波士顿凯尔特人队”,“ 9.00”

似乎无法从博彩网站上获得赔率。

library(rvest)

url <- "https://www.oddsportal.com/basketball/usa/nba/outrights/"
population <- url %>%
  read_html() %>%
  html_nodes('#odds-data-table a') %>%
  html_text() %>%
  as.numeric()

population

我已经尝试过了,但是什么也没返回。

0 个答案:

没有答案