https://www.oddsportal.com/basketball/usa/nba/outrights/
所以我试图消除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
我已经尝试过了,但是什么也没返回。