I am trying to scrape the second table "Player Standard Stats" on this web page in R: "https://fbref.com/en/comps/9/stats/Premier-League-Stats#stats_standard"
我使用下面的代码:
url <- "https://fbref.com/en/comps/9/stats/Premier-League-Stats#stats_standard"
xG_ind <- url %>%
xml2::read_html() %>%
rvest::html_nodes('table') %>%
html_table() %>%
.[[1]]
这只会让我刮到页面上的第一个表,"小队标准统计"。请你能提供如何获得第二个表的建议吗?
1条答案
按热度按时间j5fpnvbx1#
创建于2023年1月9日,使用reprex v2.0.2